From 15243ab7130163c9bfe88a6a564b049a3133f4ed Mon Sep 17 00:00:00 2001
From: LiuHao <liuhaoai545@gmail.com>
Date: 星期五, 26 一月 2024 09:58:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev

---
 src/components/DictTag/index.vue |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/components/DictTag/index.vue b/src/components/DictTag/index.vue
index b355a42..7442546 100644
--- a/src/components/DictTag/index.vue
+++ b/src/components/DictTag/index.vue
@@ -50,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