1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <template>
- <view @touchmove.stop.prevent>
- <view class="tui-popup-class tui-bottom-popup" :class="{'tui-popup-show':show}" :style="{background:bgcolor,height:height?height+'rpx':'auto'}">
- <slot></slot>
- </view>
- <view class="tui-popup-mask" :class="[show?'tui-mask-show':'']" v-if="mask" @tap="handleClose"></view>
- </view>
- </template>
- <script>
- export default {
- name: "tuiBottomPopup",
- props: {
- //是否需要mask
- mask: {
- type: Boolean,
- default: true
- },
- //控制显示
- show: {
- type: Boolean,
- default: false
- },
- //背景颜色
- bgcolor: {
- type: String,
- default: "#fff"
- },
- //高度 rpx
- height: {
- type: Number,
- default: 0
- }
- },
- methods: {
- handleClose() {
- if (!this.show) {
- return;
- }
- this.$emit('close', {});
- }
- }
- }
- </script>
- <style>
- .tui-bottom-popup {
- width: 100%;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 99999;
- visibility: hidden;
- transform: translate3d(0, 100%, 0);
- transform-origin: center;
- transition: all 0.3s ease-in-out;
- min-height: 20rpx;
- }
- .tui-popup-show {
- transform: translate3d(0, 0, 0);
- visibility: visible;
- }
- .tui-popup-mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.6);
- z-index: 99996;
- transition: all 0.3s ease-in-out;
- opacity: 0;
- visibility: hidden;
- }
- .tui-mask-show {
- opacity: 1;
- visibility: visible;
- }
- </style>
|