update src/components/Dict/DictLabel.vue.

支持多个字典值展示,例如:传入 modelValue 是一个数组(['1', '2', '3']),展示多个标签(el-tag)

Signed-off-by: 如今 <11555891+metabytes@user.noreply.gitee.com>
This commit is contained in:
如今
2025-04-07 10:19:33 +00:00
committed by Gitee
parent 3d1deab927
commit 8e522f127f

View File

@@ -1,9 +1,18 @@
<template> <template>
<template v-if="tagType"> <template v-if="Array.isArray(modelValue)">
<el-tag :type="tagType" :size="tagSize">{{ label }}</el-tag> <el-tag
v-for="(tag, index) in tagList"
:key="index"
:type="tag.tagType"
:size="tagSize"
class="me-1"
>
{{ tag.label }}
</el-tag>
</template> </template>
<template v-else> <template v-else>
<span>{{ label }}</span> <el-tag v-if="tagType" :type="tagType" :size="tagSize">{{ label }}</el-tag>
<span v-else>{{ label }}</span>
</template> </template>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
@@ -11,16 +20,20 @@ import { useDictStore } from "@/store";
const props = defineProps({ const props = defineProps({
code: String, // 字典编码 code: String, // 字典编码
modelValue: [String, Number], // 字典项的值 modelValue: [String, Number, Array], // 字典项的值
size: { size: {
type: String, type: String,
default: "default", // 标签大小 default: "default", // 标签大小
}, },
}); });
const label = ref(""); const label = ref("");
const tagType = ref<"success" | "warning" | "info" | "primary" | "danger" | undefined>(); // 标签类型 type TagType = "success" | "info" | "warning" | "danger" | "primary";
const tagType = ref<TagType | undefined>(undefined);
const tagSize = ref<"default" | "large" | "small">(props.size as "default" | "large" | "small"); // 标签大小 const tagSize = ref<"default" | "large" | "small">(props.size as "default" | "large" | "small"); // 标签大小
// 多个标签时使用
const tagList = ref<Array<{ label: string; tagType?: TagType }>>([]);
const dictStore = useDictStore(); const dictStore = useDictStore();
/** /**
* 根据字典项的值获取对应的 label 和 tagType * 根据字典项的值获取对应的 label 和 tagType
@@ -36,24 +49,27 @@ const getLabelAndTagByValue = async (dictCode: string, value: any) => {
// 查找对应的字典项 // 查找对应的字典项
const dictItem = dictItems.find((item) => item.value == value); const dictItem = dictItems.find((item) => item.value == value);
return { return {
label: dictItem?.label || "", label: dictItem?.label || String(value),
tagType: dictItem?.tagType, tagType: dictItem?.tagType as TagType,
}; };
}; };
/**
* 更新 label 和 tagType
*/
const updateLabelAndTag = async () => {
console.log("updateLabelAndTag", props.code, props.modelValue);
if (!props.code || props.modelValue === undefined) return;
const { label: newLabel, tagType: newTagType } = await getLabelAndTagByValue(
props.code,
props.modelValue
);
label.value = newLabel;
tagType.value = newTagType as typeof tagType.value;
};
const updateLabelAndTag = async () => {
if (!props.code || props.modelValue === undefined || props.modelValue === null) return;
await dictStore.loadDictItems(props.code);
if (Array.isArray(props.modelValue)) {
const results = await Promise.all(
props.modelValue.map((val) => getLabelAndTagByValue(props.code!, val))
);
tagList.value = results;
} else {
const result = await getLabelAndTagByValue(props.code, props.modelValue);
label.value = result.label;
tagType.value = result.tagType as typeof tagType.value;
}
};
watch([() => props.code, () => props.modelValue], updateLabelAndTag); watch([() => props.code, () => props.modelValue], updateLabelAndTag);
onMounted(updateLabelAndTag); onMounted(updateLabelAndTag);