From a541d61c0c2a111f9f87fde14d3557e37c3f1546 Mon Sep 17 00:00:00 2001
From: dzk <18285973401@163.com>
Date: 星期三, 17 四月 2024 23:49:07 +0800
Subject: [PATCH] 修复用户表单角色为非必填项的BUG

---
 src/views/system/dict/data.vue |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/views/system/dict/data.vue b/src/views/system/dict/data.vue
index ca212d3..902a942 100644
--- a/src/views/system/dict/data.vue
+++ b/src/views/system/dict/data.vue
@@ -55,7 +55,7 @@
             >
             <el-tag
               v-else
-              :type="scope.row.listClass === 'primary' || scope.row.listClass === 'default' ? '' : scope.row.listClass"
+              :type="scope.row.listClass === 'primary' || scope.row.listClass === 'default' ? 'primary' : scope.row.listClass"
               :class="scope.row.cssClass"
               >{{ scope.row.dictLabel }}</el-tag
             >

--
Gitblit v1.9.3