123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <template>
- <view>
- <view :class="'popup ' + (propClassname || '') + ' ' + ((propShow || false) ? 'popup-show' : '') + ' ' + ((propAnimation || true) ? 'animation': '' )" :disable-scroll="propDisablescroll">
- <view class="popup-mask" v-if="propMask || true" @tap="on_mask_tap"></view>
- <view :class="'popup-content bottom-line-exclude popup-' + (propPosition || 'bottom')+ ' '+(propIsBar ? 'popup-bar' : '')" :style="'left:'+popup_content_left_value+'px'">
- <slot></slot>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- popup_content_left_value: 'auto'
- };
- },
- components: {},
- props: {
- propClassname: {
- type: String,
- default: ''
- },
- propShow: {
- type: Boolean,
- default: false
- },
- propPosition: {
- type: String,
- default: 'bottom'
- },
- propMask: {
- type: Boolean,
- default: true
- },
- propAnimation: {
- type: Boolean,
- default: true
- },
- propDisablescroll: {
- type: Boolean,
- default: false
- },
- propIsBar: {
- type: Boolean,
- default: false
- }
- },
- // 属性值改变监听
- watch: {
- // 监听状态
- propShow(value, old_value) {
- this.left_handle();
- }
- },
- // 组建创建
- created: function() {
- this.left_handle();
- },
- methods: {
- // 事件处理
- on_mask_tap: function on_mask_tap() {
- this.$emit('onclose', {
- detail: {}
- }, {});
- },
- // 左边距位置处理
- left_handle() {
- // 处理内容左边距、避免父级设置内边距影响
- var width = uni.getSystemInfoSync().windowWidth;
- var left = 0;
- if(width > 800) {
- left = (width-800)/2;
- }
- this.popup_content_left_value = left;
- }
- }
- };
- </script>
- <style>
- .popup-content {
- position: fixed;
- background: #fff;
- z-index: 101;
- overflow: hidden;
- }
- .popup-mask {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- background-color: rgba(0, 0, 0, 0.6);
- opacity: 0;
- pointer-events: none;
- z-index: 100;
- }
- .popup-left {
- transform: translateX(-100%);
- left: 0;
- top: 0;
- bottom: 0;
- }
- .popup-right {
- transform: translateX(100%);
- right: 0;
- top: 0;
- bottom: 0;
- }
- .popup-top {
- top: 0;
- width: 100vw;
- transform: translateY(-100%);
- }
- .popup-bottom {
- bottom: var(--window-bottom);
- width: 100vw;
- transform: translateY(100%);
- }
- .popup-show .popup-content {
- transform: none;
- }
- .popup-show .popup-mask {
- opacity: 1;
- pointer-events: auto;
- }
- .popup.animation .popup-mask,
- .popup.animation .popup-content {
- transition: all 0.25s linear;
- }
- .popup-top {
- border-bottom-right-radius: 20rpx;
- border-bottom-left-radius: 20rpx;
- }
- .popup-bottom {
- border-top-right-radius: 20rpx;
- border-top-left-radius: 20rpx;
- }
- .popup-left {
- border-top-right-radius: 20rpx;
- border-bottom-right-radius: 20rpx;
- }
- .popup-right {
- border-top-left-radius: 20rpx;
- border-bottom-left-radius: 20rpx;
- }
- .popup-bar {
- /* #ifdef H5 || APP */
- bottom: var(--window-bottom) !important;
- /* #endif */
- }
- </style>
|