修改采购ui

This commit is contained in:
2025-11-19 12:54:44 +08:00
parent ecea954d52
commit 7d0492a545
9 changed files with 1169 additions and 566 deletions

View File

@@ -319,7 +319,7 @@ body {
background: $--table-bg;
// border: 1px solid $--border-color-light;
border-radius: 8px;
box-shadow: $--metal-shadow;
box-shadow: 0 6px 16px rgba(20, 30, 50, 0.08);
color: $--color-text-regular;
overflow: hidden;
margin-top: $--form-item-margin * 2; // 与表单间距
@@ -332,7 +332,7 @@ body {
// 表头(深灰黑 + 纯白文字)
.el-table__header-wrapper {
th.el-table__cell {
background: $--color-background;
background: lighten($--color-background, 6%);
color: $--color-text-primary;
font-weight: 600;
border-bottom: 1px solid $--border-color-lighter;
@@ -360,8 +360,12 @@ body {
// hover
&:hover .el-table__cell {
background: rgba($--color-primary, 0.25);
color: #888888;
background: rgba($--color-primary, 0.12);
color: #4a4a4a;
}
&:hover .el-table__cell {
background: rgba($--color-primary, 0.12);
color: #4a4a4a;
}
// 当前行
@@ -408,7 +412,7 @@ body {
}
&__empty-block {
background: $--color-background;
background: lighten($--color-background, 8%);
}
// 适配尺寸类(统一紧凑)
@@ -422,7 +426,7 @@ body {
// 表头(深灰黑 + 纯白文字)
.el-table__fixed-header-wrapper {
th.el-table__cell {
background: $--color-background;
background: lighten($--color-background, 6%);
color: $--color-text-primary;
font-weight: 600;
border-bottom: 1px solid $--border-color-lighter;