From 20790cf029bd76f4a86e9e60e38886e5f7694e63 Mon Sep 17 00:00:00 2001 From: 2256907009 <2256907009@qq.com> Date: Wed, 11 Mar 2026 12:48:21 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E5=AF=B9list=E7=9A=84=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E5=80=BC=E6=B7=BB=E5=8A=A0=E7=82=B9=E5=87=BB=E6=89=93?= =?UTF-8?q?=E5=BC=80=E7=BC=96=E8=BE=91=E5=BC=B9=E7=AA=97=E6=95=88=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/SettingManage.vue | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/views/system/SettingManage.vue b/src/views/system/SettingManage.vue index cfa5726..c7ff7e1 100644 --- a/src/views/system/SettingManage.vue +++ b/src/views/system/SettingManage.vue @@ -90,7 +90,7 @@
- + 共 {{ getFileList(row.data.value).length }} 个文件 @@ -99,7 +99,7 @@
- + 共 {{ getStringList(row.data.value).length }} 条字符串 @@ -2618,6 +2618,13 @@ onMounted(() => { display: flex; align-items: center; gap: 4px; + cursor: pointer; + transition: all 0.2s ease; +} + +.file-list-summary .el-tag:hover { + transform: translateY(-1px); + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } /* 字符串列表摘要样式 */ @@ -2630,6 +2637,13 @@ onMounted(() => { display: flex; align-items: center; gap: 4px; + cursor: pointer; + transition: all 0.2s ease; +} + +.string-list-summary .el-tag:hover { + transform: translateY(-1px); + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } /* 表格中的文件列表和字符串列表样式 */