You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<div :class="prefixCls">
|
|
|
|
<span> {{ title }}</span>
|
|
|
|
<Select v-bind="getBindValue" :class="`${prefixCls}-select`" @change="handleChange as any" :disabled="disabled" :options="options" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script lang="ts" setup name="SelectItem">
|
|
|
|
import { computed } from 'vue'
|
|
|
|
|
|
|
|
import { Select } from 'ant-design-vue'
|
|
|
|
import { useDesign } from '@/hooks/web/useDesign'
|
|
|
|
import { baseHandler } from '../handler'
|
|
|
|
import { HandlerEnum } from '../enum'
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
event: {
|
|
|
|
type: Number as PropType<HandlerEnum>
|
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
type: Boolean
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
type: String
|
|
|
|
},
|
|
|
|
def: {
|
|
|
|
type: [String, Number] as PropType<string | number>
|
|
|
|
},
|
|
|
|
initValue: {
|
|
|
|
type: [String, Number] as PropType<string | number>
|
|
|
|
},
|
|
|
|
options: {
|
|
|
|
type: Array as PropType<LabelValueOptions>,
|
|
|
|
default: () => []
|
|
|
|
}
|
|
|
|
})
|
|
|
|
const { prefixCls } = useDesign('setting-select-item')
|
|
|
|
const getBindValue = computed(() => {
|
|
|
|
return props.def ? { value: props.def, defaultValue: props.initValue || props.def } : {}
|
|
|
|
})
|
|
|
|
|
|
|
|
function handleChange(e: ChangeEvent) {
|
|
|
|
props.event && baseHandler(props.event, e)
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
|
|
@prefix-cls: ~'@{namespace}-setting-select-item';
|
|
|
|
|
|
|
|
.@{prefix-cls} {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin: 16px 0;
|
|
|
|
|
|
|
|
&-select {
|
|
|
|
width: 126px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|