From baede47f1bcc7c2ab5def22722b1ed8ee62666ba Mon Sep 17 00:00:00 2001 From: lihui Date: Mon, 29 Sep 2025 16:46:55 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E6=9F=B1=E7=8A=B6=E5=9B=BE?= =?UTF-8?q?=E9=83=A8=E5=88=86=E5=86=85=E5=AE=B9:=E6=8E=92=E5=90=8D?= =?UTF-8?q?=E5=8D=A1=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/workspace/GoldGraph.vue | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/src/components/workspace/GoldGraph.vue b/src/components/workspace/GoldGraph.vue index 9f0cf73..dabf113 100644 --- a/src/components/workspace/GoldGraph.vue +++ b/src/components/workspace/GoldGraph.vue @@ -763,29 +763,29 @@ onUnmounted(() => { } .graph-card-list { - background: #F3FAFF; + background: #E7F4FD; box-shadow: 0 0 8px 0 #00000040; padding: 12px; + /** 选择框 穿透样式 */ .card-select { - :deep(.el-input__wrapper) { - background-color: #E7F4FD !important; - box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25) !important; + :deep(.el-select__wrapper ) { + background: #E7F4FD; border: none !important; } - - :deep(.el-input__inner) { - background-color: transparent !important; + :deep(.el-select__input-wrapper ) { + background: #F3FAFF; + box-shadow: 0 0 8px 0 #00000040; + border: none !important; } - :deep(.el-input__suffix) { - background-color: transparent !important; - } + + } /* 表格整体背景:把表格容器设为卡片背景 */ :deep(.el-table) { - background-color: #F3FAFF !important; + background-color: #E7F4FD !important; box-shadow: none !important; } @@ -804,14 +804,12 @@ onUnmounted(() => { /* 表头 */ :deep(.el-table__header th) { - background-color: #F3FAFF !important; + background-color: #E7F4FD !important; } - /* 行之间的分隔线(更像卡片内表格) */ - :deep(.el-table .el-table__row):not(:last-child) { - border-bottom: 1px solid rgba(0,0,0,0.06); + /* 针对表格 body 中的单元格底部边框 */ + :deep(.el-table__body .el-table__cell) { + border-bottom: 1px solid #BBC0C9 !important; } - } -