| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- <template>
- <view class="ss-select-container" :class="{ open: isOpen }" @click.stop="toggleDropdown">
- <!-- 显示区域 -->
- <view class="ss-select" :class="{ disabled: disabled }">
- <text class="select-text" :class="{ placeholder: !selectedValue }">{{ displayText }}</text>
- <view class="select-arrow" :class="{ rotate: isOpen }">
- <Icon name="icon-xiangxiajiantou" size="32" :color="disabled ? '#ccc' : '#999'"/>
- </view>
- </view>
-
- <!-- 选项列表 -->
- <view class="ss-options" v-show="isOpen">
- <!-- 加载状态 -->
- <view
- v-if="loading"
- class="option-item loading-item"
- >
- <text class="loading-text">加载中...</text>
- </view>
- <!-- 无选项 -->
- <view
- v-else-if="optionsList.length === 0"
- class="option-item no-options"
- >
- 无选项
- </view>
- <!-- 选项列表 -->
- <view
- v-else
- v-for="(option, index) in optionsList"
- :key="index"
- class="option-item"
- :class="{ selected: option[props.mapping.value] === selectedValue }"
- @click.stop="selectOption(option)"
- >
- {{ option[props.mapping.text] }}
- </view>
- </view>
-
- </view>
- </template>
- <script setup>
- import { ref, computed, watch, onMounted, onUnmounted } from 'vue'
- import Icon from '@/components/icon/index.vue';
- // Props 定义
- const props = defineProps({
- // 选项数组
- options: {
- type: Array,
- default: () => []
- },
- // 字段映射
- mapping: {
- type: Object,
- default: () => ({ text: 'n', value: 'v' })
- },
- // 默认值
- modelValue: {
- type: [String, Number],
- default: ''
- },
- // 占位符
- placeholder: {
- type: String,
- default: '请选择'
- },
- // 校验配置
- validation: {
- type: Object,
- default: () => ({ enable: false, message: '' })
- },
- // 是否禁用
- disabled: {
- type: Boolean,
- default: false
- },
- // 是否支持搜索
- searchable: {
- type: Boolean,
- default: false
- },
- // 是否支持清空
- clearable: {
- type: Boolean,
- default: false
- },
- // 加载状态
- loading: {
- type: Boolean,
- default: false
- },
- // 宽度设置
- width: {
- type: String,
- default: '100%'
- }
- })
- // Emits 定义
- const emit = defineEmits(['update:modelValue', 'change', 'search', 'clear'])
- // 响应式数据
- const isOpen = ref(false)
- const selectedValue = ref(props.modelValue)
- const searchKeyword = ref('')
- // 计算属性
- const optionsList = computed(() => props.options || [])
- const displayText = computed(() => {
- if (!selectedValue.value) return props.placeholder
-
- const selectedOption = optionsList.value.find(
- option => option[props.mapping.value] === selectedValue.value
- )
- return selectedOption ? selectedOption[props.mapping.text] : props.placeholder
- })
- // 方法
- const toggleDropdown = () => {
- if (props.disabled) return
- if (!isOpen.value) {
- // 关闭其他下拉框
- uni.$emit('closeAllSelects')
- }
- isOpen.value = !isOpen.value
- }
- const selectOption = (option) => {
- const value = option[props.mapping.value]
- selectedValue.value = value
- isOpen.value = false
-
- // 触发事件
- emit('update:modelValue', value)
- emit('change', value, option)
- }
- const closeDropdown = () => {
- isOpen.value = false
- }
- // 设置值的方法(供外部调用)
- const setValue = (value) => {
- if (!value) {
- selectedValue.value = ''
- emit('update:modelValue', '')
- return true
- }
-
- const option = optionsList.value.find(
- opt => opt[props.mapping.value] === value
- )
-
- if (option) {
- selectedValue.value = value
- emit('update:modelValue', value)
- emit('change', value, option)
- return true
- }
-
- return false
- }
- // 监听外部值变化
- watch(() => props.modelValue, (newValue) => {
- selectedValue.value = newValue
- })
- // 监听全局关闭事件
- const handleGlobalClose = () => {
- closeDropdown()
- }
- onMounted(() => {
- uni.$on('closeAllSelects', handleGlobalClose)
-
- // 点击页面其他地方关闭下拉框
- uni.$on('pageClick', closeDropdown)
- })
- onUnmounted(() => {
- uni.$off('closeAllSelects', handleGlobalClose)
- uni.$off('pageClick', closeDropdown)
- })
- // 暴露方法给父组件
- defineExpose({
- setValue,
- getValue: () => selectedValue.value,
- getSelectedOption: () => {
- return optionsList.value.find(
- option => option[props.mapping.value] === selectedValue.value
- )
- }
- })
- </script>
- <style lang="scss" scoped>
- /* ss暂用下拉框样式 */
- .ss-select-container {
- position: relative;
- width: v-bind(width);
- font-size: 32rpx;
- }
- .ss-select {
- padding: 10rpx 0;
- border-radius: 10rpx;
- cursor: pointer;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: space-between;
- min-height: 80rpx;
- box-sizing: border-box;
- &.disabled {
- opacity: 0.6;
- cursor: not-allowed;
- .select-text {
- color: #ccc;
- }
- }
- }
- .select-text {
- flex: 1;
- color: #333;
- &.placeholder {
- color: #999;
- }
- }
- .select-arrow {
- display: flex;
- align-items: center;
- transition: transform 0.3s ease;
- margin-left: 20rpx;
- &.rotate {
- transform: rotate(180deg);
- }
- }
- .ss-options {
- display: none;
- position: absolute;
- top: 100%;
- left: 0;
- width: 100%;
- background-color: #393D51;
- z-index: 1000;
- color: #fff;
- border: 2rpx solid #393D51;
- box-sizing: border-box;
- border-radius: 10rpx;
- overflow: hidden;
- max-height: 600rpx;
- overflow: auto;
- }
- .ss-select-container.open .ss-options {
- display: block;
- }
- .option-item {
- padding: 20rpx 20rpx 20rpx 46rpx;
- cursor: pointer;
- position: relative;
- &::after {
- content: "";
- position: absolute;
- bottom: 0%;
- left: 50%;
- transform: translateX(-50%);
- width: 80%;
- height: 2rpx;
- background-color: #303445;
- }
- &:last-child::after,
- &:hover::after,
- &.selected::after {
- display: none;
- }
- &:hover {
- background-color: #fff;
- color: #393D51;
- }
- &.selected {
- background-color: #fff;
- color: #393D51;
- &::before {
- content: "";
- background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23393D51"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat center;
- position: absolute;
- width: 30rpx;
- height: 100%;
- left: 10rpx;
- top: 0;
- color: #393D51;
- }
- }
- &.no-options {
- text-align: center;
- color: #999;
- cursor: default;
- &:hover {
- background-color: #393D51;
- color: #999;
- }
- }
- &.loading-item {
- text-align: center;
- color: #999;
- cursor: default;
- &:hover {
- background-color: #393D51;
- color: #999;
- }
- .loading-text {
- animation: loading-pulse 1.5s ease-in-out infinite;
- }
- }
- }
- @keyframes loading-pulse {
- 0%, 100% { opacity: 0.6; }
- 50% { opacity: 1; }
- }
- </style>
|