From b95a49c7d74e5c7f45cd7c65f45502edf7f203dd Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期五, 07 二月 2025 13:08:34 +0800 Subject: [PATCH] reset 回滚有问题的修改 --- src/components/DictTag/index.vue | 19 ++++++++++++++----- 1 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/components/DictTag/index.vue b/src/components/DictTag/index.vue index e5dd57d..ad326c2 100644 --- a/src/components/DictTag/index.vue +++ b/src/components/DictTag/index.vue @@ -15,7 +15,15 @@ :key="item.value + ''" :disable-transitions="true" :index="index" - :type="item.elTagType === 'primary' || item.elTagType === 'default' ? '' : item.elTagType" + :type=" + item.elTagType === 'primary' || + item.elTagType === 'success' || + item.elTagType === 'info' || + item.elTagType === 'warning' || + item.elTagType === 'danger' + ? item.elTagType + : 'primary' + " :class="item.elTagClass" > {{ item.label + ' ' }} @@ -32,8 +40,8 @@ interface Props { options: Array<DictDataOption>; value: number | string | Array<number | string>; - showValue: boolean; - separator: string; + showValue?: boolean; + separator?: string; } const props = withDefaults(defineProps<Props>(), { showValue: true, @@ -48,12 +56,13 @@ const unmatch = computed(() => { if (props.options?.length == 0 || props.value === '' || props.value === null || typeof props.value === 'undefined') return false; // 浼犲叆鍊间负闈炴暟缁� + let unmatch = false; // 娣诲姞涓�涓爣蹇楁潵鍒ゆ柇鏄惁鏈夋湭鍖归厤椤� values.value.forEach((item) => { if (!props.options.some((v) => v.value === item)) { - return true; // 濡傛灉鏈夋湭鍖归厤椤癸紝灏嗘爣蹇楄缃负true + unmatch = true; // 濡傛灉鏈夋湭鍖归厤椤癸紝灏嗘爣蹇楄缃负true } }); - return false; // 杩斿洖鏍囧織鐨勫�� + return unmatch; // 杩斿洖鏍囧織鐨勫�� }); const unmatchArray = computed(() => { -- Gitblit v1.9.3