绿满眶商城微信小程序-uniapp
zxl
4 天以前 c9928dd4f6d25e2339ea1400f59ec58674a927a7
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
<template>
  <view class="dropdown-container" :style="{ '--theme-color': themeColor }">
    <!-- 触发按钮 -->
    <view class="dropdown-trigger" @click="toggleDropdown">
      <uni-icons type="more-filled" size="20" color="#666"></uni-icons>
      <view class="dropdown-icon" :class="{ 'rotate': isOpen }">
        <uni-icons type="arrowdown" size="16" color="#666"></uni-icons>
      </view>
    </view>
    
    <!-- 下拉菜单 -->
    <view 
      class="dropdown-menu" 
      :class="[placementClass]"
      v-if="isOpen" 
      @click.stop
    >
      <scroll-view scroll-y class="dropdown-scroll" :style="{ maxHeight: maxHeight + 'px' }">
        <view 
          v-for="(item, index) in options" 
          :key="index" 
          class="dropdown-item"
          @click="selectItem(item)"
        >
          <text>{{ item[labelKey] }}</text>
        </view>
      </scroll-view>
    </view>
    
    <!-- 遮罩层 -->
    <view 
      class="dropdown-mask" 
      v-if="isOpen" 
      @click="closeDropdown"
    ></view>
  </view>
</template>
 
<script>
export default {
  name: 'DropdownMenu',
  props: {
    // 业务数据,选中菜单后一同返回
    data: {
        type: Object
    },
    // 选项列表
    options: {
      type: Array,
      default: () => []
    },
    // 选项对象中显示文本的key
    labelKey: {
      type: String,
      default: 'label'
    },
    // 选项对象中值的key
    valueKey: {
      type: String,
      default: 'command'
    },
    // 主题颜色
    themeColor: {
      type: String,
      default: '#409EFF'
    },
    // 下拉菜单最大高度
    maxHeight: {
      type: Number,
      default: 300
    },
    // 菜单弹出位置(top/bottom)
    placement: {
      type: String,
      default: 'bottom',
      validator: (value) => ['top', 'bottom'].includes(value)
    }
  },
  data() {
    return {
      isOpen: false,
      selectedItem: null
    }
  },
  computed: {
    placementClass() {
      return `placement-${this.placement}`;
    }
  },
  methods: {
    toggleDropdown() {
      this.isOpen = !this.isOpen
      if (this.isOpen) {
        this.$emit('open')
      } else {
        this.$emit('close')
      }
    },
    closeDropdown() {
      this.isOpen = false
      this.$emit('close')
    },
    selectItem(item) {
      this.selectedItem = item
      this.closeDropdown()
      
      // 根据配置返回整个对象或value值
      const emitValue = typeof item === 'object' ? item[this.valueKey] : item
      this.$emit('input', emitValue)
      this.$emit('change', emitValue, this.data)
    }
  }
}
</script>
 
<style lang="scss" scoped>
.dropdown-container {
  position: relative;
  display: inline-block;
  z-index: 10;
}
 
.dropdown-trigger {
  height: 70rpx;
  line-height: 70rpx;
  border-radius: 8rpx;
  background-color: #fff;
  box-sizing: border-box;
  cursor: pointer;
  
  &:active {
    opacity: 0.8;
  }
}
 
.dropdown-text {
  flex: 1;
  font-size: 28rpx;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
 
.dropdown-icon {
  transition: transform 0.3s;
  margin-left: 10rpx;
  
  &.rotate {
    transform: rotate(180deg);
  }
}
 
.dropdown-menu {
  position: absolute;
  left: -50rpx;
  display: inline-block;
  white-space: nowrap;
  background-color: #fff;
  border: 1rpx solid #EBEEF5;
  border-radius: 8rpx;
  // box-shadow: 0 2rpx 12rpx 0 rgba(0, 0, 0, 0.1);
  z-index: 100;
  overflow: hidden;
  
  &.placement-bottom {
    top: 80rpx;
  }
  
  &.placement-top {
    bottom: 80rpx;
  }
}
 
.dropdown-scroll {
  width: 100%;
}
 
.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20rpx;
  height: 80rpx;
  line-height: 80rpx;
  font-size: 28rpx;
  color: #606266;
  
  &:active {
    background-color: #f5f7fa;
  }
  
  &.active {
    color: var(--theme-color);
    font-weight: bold;
  }
}
 
.dropdown-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 99;
}
</style>