jhzh
2025-04-03 db12897dc68c68d40c557aa59ad78022e2b30ac2
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
<template>
    <view>
        <view @click="showShadow" class="dropWrap p-x-ms d-flex justify-between align-center fn-bold" style="background: #F7F8FC;">
            <view class="" v-if="contract==0">
                {{ list[currents].label }}
            </view>
            <view class="" v-else>
                {{ list[currents].label }}X
            </view>
            <view class="sanjiao"></view></view>
        <view class="dropdown">
            <view :class="showIf ? 'dropdown-mask' : 'undropdown-mask'" @click="hideShadow"></view>
            <!-- <view class="ul" :style="showIf?'height:'+list.length*30+'px':''"> --> 
            <view class="ul" :style="'--i:'+list.length" :class="showIf?'show':''">  <!-- 不支持就用上面那种 -->
                <view class="li p-x-md" :class="text==item.label?'active':''" v-for="(item, index) in list" :key="index" @click="handlerItem(item,index)">
                    
                    <view class="" v-if="contract==0">
                        {{item.label}}
                    </view>
                    <view class="" v-else>
                        {{item.label}}X
                    </view>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
export default {
    name: 'dropdown',
    props: {
        list: {
            type: Array,
            default: () => []
        },
        current: {
            type: [String, Number],
            default: 0
        },
       contract: {
           type:  String,
           default: ''
       }
    },
    data() {
        return {
            showIf: false,
            text:'',
            active:2,
            currents:0,
        };
    },
    methods: {
        handlerItem(value,index) {
            this.showIf = false
            this.text=this.list[index].label
            this.currents = index
            this.$emit('onClick', value);
        },
        hideShadow() {
            this.showIf = false;
        },
        showShadow() {
            this.showIf = true;
        }
    },
    watch: {
        current(newVal) {
            this.currents = newVal
        }
    },
    mounted() {
        if(this.contract==1&&this.list){
            this.text=this.list[this.current].label
        }else if(this.contract==0&&this.list){
            this.text=this.list[this.current].label 
        }
    }
};
</script>
 
<style scoped lang="scss">
.dropWrap {
    box-sizing: border-box;
    width: 100%;
    height: 26px;
    // border: 1px solid #e8ecef;
    font-size: 12px;
    color: $light;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    .sanjiao{
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right:5px solid transparent;
        border-top:5px solid $light;
        border-bottom:5px solid transparent;
        transform: translateY(3px);
    }
}
.dropdown {
    position: absolute;
    width: 100%;
    z-index: 100;
    .ul {
        width: 100%;
        position: relative;
        z-index: 101;
        list-style: none;
        border-radius: 4rpx;
        background-color:$panel-4;
        padding-left: 0;
        box-shadow: 6rpx 6rpx 10rpx rgba(122, 122, 122, 0.2);
        transition: all 0.2s;
        height: 0;
        overflow: hidden;
        .li {
            box-sizing: border-box;
            color: $light;
            height: 30px;
            border-bottom: 1px solid $panel-4;
            font-size: 24rpx;
            line-height: 30px;              //与下面的高度保持一致
            white-space:nowrap;
            text-overflow:ellipsis;
            overflow: hidden;
        }
        .li:last-child {
            border-bottom: none;
        }
    }
    .show {
        height: calc( var(--i) * 30px );   //与上面的高度保持一致
    }
    .dropdown-mask {
        top: 0;
        left: 0;
        position: fixed;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        pointer-events: auto;
    }
    .undropdown-mask {
        pointer-events: none;
    }
}
.active{
    background-color:  $panel-2;
    color: $theme-1!important;
}
</style>