mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
parent
3f06ca3623
commit
15b88c97fc
@ -19,25 +19,63 @@
|
|||||||
@change="changeHandler"
|
@change="changeHandler"
|
||||||
@visible-change="visibleHandler"
|
@visible-change="visibleHandler"
|
||||||
>
|
>
|
||||||
<template v-if="config.group"><SelectOptionGroups :options="groupOptions"></SelectOptionGroups></template>
|
<template v-if="config.group">
|
||||||
<template v-else><SelectOptions :options="itemOptions"></SelectOptions></template>
|
<component
|
||||||
|
v-for="(group, index) in (options as SelectGroupOption[])"
|
||||||
|
:key="index"
|
||||||
|
:is="optionGroupComponent?.component"
|
||||||
|
v-bind="
|
||||||
|
optionGroupComponent?.props({
|
||||||
|
label: group.label,
|
||||||
|
disabled: group.disabled,
|
||||||
|
})
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<component
|
||||||
|
v-for="(item, index) in group.options"
|
||||||
|
:is="optionComponent?.component"
|
||||||
|
:key="index"
|
||||||
|
v-bind="
|
||||||
|
optionComponent?.props({
|
||||||
|
label: item.label || item.text,
|
||||||
|
value: item.value,
|
||||||
|
disabled: item.disabled,
|
||||||
|
})
|
||||||
|
"
|
||||||
|
>
|
||||||
|
</component>
|
||||||
|
</component>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<component
|
||||||
|
v-for="option in (options as SelectOption[])"
|
||||||
|
class="tmagic-design-option"
|
||||||
|
:key="config.valueKey ? option.value[config.valueKey] : option.value"
|
||||||
|
:is="optionComponent?.component"
|
||||||
|
v-bind="
|
||||||
|
optionComponent?.props({
|
||||||
|
label: option.text,
|
||||||
|
value: option.value,
|
||||||
|
disabled: option.disabled,
|
||||||
|
})
|
||||||
|
"
|
||||||
|
>
|
||||||
|
</component>
|
||||||
|
</template>
|
||||||
<div v-loading="true" v-if="moreLoadingVisible"></div>
|
<div v-loading="true" v-if="moreLoadingVisible"></div>
|
||||||
</TMagicSelect>
|
</TMagicSelect>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { inject, nextTick, onBeforeMount, Ref, ref, watch, watchEffect } from 'vue';
|
import { inject, nextTick, onBeforeMount, ref, watch, watchEffect } from 'vue';
|
||||||
|
|
||||||
import { TMagicSelect } from '@tmagic/design';
|
import { getConfig as getDesignConfig, TMagicSelect } from '@tmagic/design';
|
||||||
import { getValueByKeyPath } from '@tmagic/utils';
|
import { getValueByKeyPath } from '@tmagic/utils';
|
||||||
|
|
||||||
import type { FieldProps, FormState, SelectConfig, SelectGroupOption, SelectOption } from '../schema';
|
import type { FieldProps, FormState, SelectConfig, SelectGroupOption, SelectOption } from '../schema';
|
||||||
import { getConfig } from '../utils/config';
|
import { getConfig } from '../utils/config';
|
||||||
import { useAddField } from '../utils/useAddField';
|
import { useAddField } from '../utils/useAddField';
|
||||||
|
|
||||||
import SelectOptionGroups from './SelectOptionGroups.vue';
|
|
||||||
import SelectOptions from './SelectOptions.vue';
|
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
name: 'MFormSelect',
|
name: 'MFormSelect',
|
||||||
});
|
});
|
||||||
@ -46,6 +84,9 @@ const props = defineProps<FieldProps<SelectConfig>>();
|
|||||||
|
|
||||||
const emit = defineEmits(['change']);
|
const emit = defineEmits(['change']);
|
||||||
|
|
||||||
|
const optionComponent = getDesignConfig('components')?.option;
|
||||||
|
const optionGroupComponent = getDesignConfig('components')?.optionGroup;
|
||||||
|
|
||||||
if (!props.model) throw new Error('不能没有model');
|
if (!props.model) throw new Error('不能没有model');
|
||||||
useAddField(props.prop);
|
useAddField(props.prop);
|
||||||
|
|
||||||
@ -394,7 +435,4 @@ const remoteMethod = async (q: string) => {
|
|||||||
}, 0);
|
}, 0);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const itemOptions = options as Ref<SelectOption[]>;
|
|
||||||
const groupOptions = options as Ref<SelectGroupOption[]>;
|
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
<template>
|
|
||||||
<TMagicOptionGroup v-for="(group, index) in options" :key="index" :label="group.label" :disabled="group.disabled">
|
|
||||||
<component
|
|
||||||
v-for="(item, index) in group.options"
|
|
||||||
:is="uiComponent"
|
|
||||||
:key="index"
|
|
||||||
:label="item.label || item.text"
|
|
||||||
:value="item.value"
|
|
||||||
:disabled="item.disabled"
|
|
||||||
>
|
|
||||||
</component>
|
|
||||||
</TMagicOptionGroup>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { getConfig, TMagicOptionGroup } from '@tmagic/design';
|
|
||||||
|
|
||||||
import { SelectGroupOption } from '../schema';
|
|
||||||
|
|
||||||
defineOptions({
|
|
||||||
name: 'MFormSelectOptionGroups',
|
|
||||||
});
|
|
||||||
|
|
||||||
defineProps<{
|
|
||||||
options: SelectGroupOption[];
|
|
||||||
}>();
|
|
||||||
|
|
||||||
const uiComponent = getConfig('components')?.option.component || 'el-option';
|
|
||||||
</script>
|
|
@ -1,24 +0,0 @@
|
|||||||
<template>
|
|
||||||
<TMagicOption
|
|
||||||
v-for="option in options"
|
|
||||||
:label="option.text"
|
|
||||||
:value="option.value"
|
|
||||||
:key="valueKey ? option.value[valueKey] : option.value"
|
|
||||||
:disabled="option.disabled"
|
|
||||||
></TMagicOption>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { TMagicOption } from '@tmagic/design';
|
|
||||||
|
|
||||||
import { SelectOption } from '../schema';
|
|
||||||
|
|
||||||
defineOptions({
|
|
||||||
name: 'MFormSelectOptions',
|
|
||||||
});
|
|
||||||
|
|
||||||
defineProps<{
|
|
||||||
options: SelectOption[];
|
|
||||||
valueKey?: string;
|
|
||||||
}>();
|
|
||||||
</script>
|
|
Loading…
x
Reference in New Issue
Block a user