zhao_js
2024-01-03 a1321ff4ad712a1c14595bbb7cb6edfa029eca0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<template>
    <view>
        <view v-show="ifshow" @tap="ableClose" @touchmove.stop.prevent class="popup-layer" >
        </view>
        <view class="popup-content" @tap.stop="stopEvent" :style="_location">
            <slot name="content"></slot>
        </view>
    </view>
</template>
 
<script>
    export default {
        name: 'popup-layer',
        model: {
            prop: "showPop",
            event: "change"
        },
        props: {
            showPop:{
                type:Boolean,
                default:false,
            },
            direction: {
                type: String,
                default: 'top', // 方向  top,bottom,left,right 
            },
            autoClose: {
                type: Boolean,
                default: true,
            }
        },
        data() {
            return {
                ifshow: false, // 是否展示,
                //#ifdef H5
                translateValue: -150, // 位移距离
                //#endif
                //#ifndef H5
                translateValue: -100, // 位移距离
                //#endif
                timer: null,
                iftoggle: false,
 
            };
        },
        computed: {
            _translate() {
                const transformObj = {
                    'top': `transform:translateY(${-this.translateValue}%)`,
                    'bottom': `transform:translateY(${this.translateValue}%)`,
                    'left': `transform:translateX(${-this.translateValue}%)`,
                    'right': `transform:translateX(${this.translateValue}%)`
                };
                return transformObj[this.direction]
            },
            _location() {
                const positionValue = {
                    //#ifndef H5
                    'top': 'bottom:0px;width:100%;',
                    //#endif
                     //#ifdef H5
                    'top': 'bottom:50px;width:100%;',
                     //#endif
                    'bottom': 'top:0px;width:100%;',
                    'left': 'right:0px;height:100%;',
                    'right': 'left:0px;height:100%;',
                };
                return positionValue[this.direction] + this._translate;
            }
        },
        mounted(){
            if(this.showPop){
                // console.log(222);
                this.show();
            }
        },
        watch:{
            showPop(value){
                console.log(value)
                if(value){
                    this.show();
                }else{
                    this.close();
                }
            }    
        },
        methods: {
            stopMove(event){
                console.log(11);
                console.log(event);
                return;
            },
            show(events) {
                this.ifshow = true;
                let _open = setTimeout(() => {
                    this.translateValue = 0;
                    _open = null;
                }, 100)
                let _toggle = setTimeout(() => {
                    this.iftoggle = true;
                    _toggle = null;
                }, 300);
            },
            close() {
                if (this.timer !== null || !this.iftoggle) {
                    return;
                }
                this.translateValue = -100;
                //#ifdef H5
                this.translateValue = -150
                //#endif
                this.timer = setTimeout(() => {
                    this.ifshow = false;
                    this.timer = null;
                    this.iftoggle = false;
                    this.$emit('closeCallBack', null);
                    this.$emit('change',false)
                }, 300);
            },
            ableClose() {
                if (this.autoClose) {
                    this.close();
                }
            },
            stopEvent(event) {},
            doSome(){
                console.log(111222111111111);
            }
 
        }
    }
</script>
 
<style lang="scss">
    .popup-layer {
        position: fixed;
        z-index: 9990;
        background: rgba(0, 0, 0, .3);
        height: 100%;
        width: 100%;
        top: 0px;
        left: 0px;
        overflow: hidden;
    }
 
    .popup-content {
        position: fixed;
        z-index: 9991;
        background: #FFFFFF;
        transition: all .3s ease;
        overflow: hidden;
        box-sizing: border-box;
        // border:1px solid red;
    }
</style>