gaoluyang
3 天以前 5f5486731922637d9522b41dc54d932fdd29ebc4
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<template>
    <div class="dropdown-item">
        <!-- selected -->
        <view :class="['dropdown-item__selected',listWidth!='150rpx'?'dropdown-item__right':'dropdown-item__left']" 
              @click="changePopup" :style="{maxWidth:selectWidth}">
            <view class="selected__name">{{selectItem.text}}</view>
            <view class="selected__icon"
                :class="showClass === 'show'? 'up' : 'down'"
            >
                <li class="iconfont icon-caretdown"></li>
            </view>
        </view>
        <view class="dropdown-item__content" :style="{top: contentTop + 'rpx'}" v-if="showList">
            <!-- dropdown -->
            <view :class="['list', showClass]" :style="{left: contentLeft>0?contentLeft + 'rpx':'auto',right: contentRight>0?contentRight + 'rpx':'auto',}">
                <view class="list__option"
                    v-for="(item, index) in list" :key="index"
                    @click="choose(item)">
                    <view>{{item.text}}</view>
                    <icon v-if="item.value === value" type="success_no_circle" size="20"/>    
                </view>
            </view>    
            <!-- dropdown-mask -->
            <view :class="['dropdown-mask', showClass]" v-if="showList" @click="closePopup"></view>
        </view>
    </div>
</template>
 
<script>
    export default {
        components: {
        },
        props: {
            value: [Number, String, Object],
            list: {
                type: Array,
                default: ()=> {
                    return []
                }
            },
            contentTop:{
                type:String,
                default:"185"
            },
            contentLeft:{
                type:String,
                default:"0"
            },
            contentRight:{
                type:String,
                default:"0"
            },
            listWidth:{
                type:String,
                default:'150rpx'
            },
            selectWidth:{
                type:String,
                default:'150rpx'
            }
        },
        data() {
            return {
                showList: "",
                showClass: '',
                selectItem: {},
            }
        },
        watch: {
            list(newVal,oldVal){
                this.selectItem = newVal[0];
            }
        },
        mounted() {
            this.showList = this.active;
            this.selectItem = this.list[0];
        },
        methods: {
            choose(item) {
                if(item.value != "auto"){
                    this.selectItem = item
                }
                this.$emit('changeItem', item);
                this.closePopup();
            },
            selectAuto(){
                this.selectItem = {text: '指定日期',value: 'auto'};
            },
            changePopup() {
                if(this.showList) {
                    this.closePopup()
                } else {
                    this.openPopup()
                }
            },
            openPopup() {
                setTimeout(() => {
                    this.showClass = 'show';
                    this.showList = true;
                }, 100);
            },
            closePopup() {
                this.showClass = ''
                setTimeout(() => {
                    this.showList = false
                }, 200);
            },
            close() {
                this.showClass = ''
                this.showList = false
            },
        }
    }
</script>
 
<style lang="scss">
    
    li{
         list-style-type:none;
    }
    .dropdown-item__content{
        z-index: 10!important;
    }
    .dropdown-item {
        width: 100%;
        flex:1;
        position: relative;
        &__selected {
            position: relative;
            padding: 10rpx 0;
            box-sizing: border-box;
            color: #fff;
            .selected__name {
                font-size: 28rpx;
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
            }
            .selected__icon {
                margin-left: 20rpx;
                &.down {
                    transition: transform .3s;
                    transform: rotateZ(0);
                }
                &.up {
                    transition: transform .3s;
                    transform: rotateZ(-180deg);
                }
            }
            
        }
        &__left{
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
        }
        &__right{
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
            align-items: center;
        }
        &__content {
            position: fixed;
            left: 0;
            right: 0;
            overflow: hidden;
            top: 0;
            bottom: 0;
            z-index: 1;
            .list {
                max-height: 400px;
                text-align: center;
                overflow-y: auto;
                position: absolute;
                z-index: 1200;
                background: #fff;
                transform: translateY(-100%);
                transition: all .3s;
                &.show {
                    transform: translateY(0);
                }
                &__option {
                    font-size:30rpx;
                    padding: 18rpx;
                    display: flex;
                    justify-content: space-between;
                    color: #303133;
                    &:not(:last-child) {
                        border-bottom: 1rpx solid #DDDDDD;
                    }
                }
            }
            .dropdown-mask {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                transition: all .3s;
                z-index: 1100;
                &.show {
                    background:rgba(0,0,0,0.5);
                }
            }
        }
        &:not(:last-child):after {
            content: ' ';
            position: absolute;
            width: 2rpx;
            top: 36rpx;
            bottom: 36rpx;
            right: 0;
            background: $uni-border-color;
        }
    }
</style>