| | |
| | | <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> |
| | | <uni-icons type="more-filled" size="20" color="#fff"></uni-icons> |
| | | <view class="dropdown-icon" :class="{ 'rotate': isOpen }"> |
| | | <uni-icons type="arrowdown" size="16" color="#666"></uni-icons> |
| | | <uni-icons type="arrowdown" size="16" color="#fff"></uni-icons> |
| | | </view> |
| | | </view> |
| | | |
| | |
| | | height: 70rpx; |
| | | line-height: 70rpx; |
| | | border-radius: 8rpx; |
| | | background-color: #fff; |
| | | // background-color: #fff; |
| | | box-sizing: border-box; |
| | | cursor: pointer; |
| | | |