From 6f9851a4e5fb507069c6ef3e93a76a2945a1b6fe Mon Sep 17 00:00:00 2001
From: songgaoshuai <1742057357@qq.com>
Date: 星期四, 07 三月 2024 16:16:28 +0800
Subject: [PATCH] fix 修复无法编辑设计器问题 功能未完成先注释掉

---
 src/components/DictTag/index.vue |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/src/components/DictTag/index.vue b/src/components/DictTag/index.vue
index e5dd57d..7442546 100644
--- a/src/components/DictTag/index.vue
+++ b/src/components/DictTag/index.vue
@@ -29,11 +29,13 @@
 </template>
 
 <script setup lang="ts">
+import { propTypes } from '@/utils/propTypes';
+
 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 +50,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