From a1543bccf6b616d2db9d44b762826d58887172a6 Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期二, 10 六月 2025 18:57:57 +0800 Subject: [PATCH] refactor(zhitan-system):优化获取节点ID列表的逻辑- 移除了过滤条件中的 parentNode 节点 ID 比较逻辑 - 现在只根据父节点 ID 是否非空来筛选 modelNodeList --- zhitan-vue/src/assets/styles/element-ui.scss | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/zhitan-vue/src/assets/styles/element-ui.scss b/zhitan-vue/src/assets/styles/element-ui.scss index a456a20..f6c2c3a 100644 --- a/zhitan-vue/src/assets/styles/element-ui.scss +++ b/zhitan-vue/src/assets/styles/element-ui.scss @@ -3,20 +3,20 @@ .themeDark { .el-breadcrumb__inner, .el-breadcrumb__inner a { - font-weight: bold !important; + font-weight: 500 !important; color: #97a8be !important; - font-size: 24px !important; + font-size: 16px !important; } } .themeLight { .el-breadcrumb__inner, .el-breadcrumb__inner a { - font-weight: bold !important; - color: #000103 !important; - font-size: 24px !important; + font-weight: 500 !important; + color: #333 !important; + font-size: 16px !important; } .app-breadcrumb.el-breadcrumb .no-redirect{ - color: #000103 !important; + color: #333 !important; } } -- Gitblit v1.9.3