style(wms): 修改仓库视图中的禁用和占用状态背景色

将禁用状态和占用状态的背景色统一改为更醒目的黄色(#eeff6f),提高视觉辨识度
This commit is contained in:
砂糖
2025-12-06 10:24:07 +08:00
parent 0236637c38
commit dd5c86470c
2 changed files with 3 additions and 3 deletions

View File

@@ -240,7 +240,7 @@ export default {
} }
.occupied { .occupied {
background-color: #c0c4cc; background-color: #eeff6f;
} }
.legend-text { .legend-text {

View File

@@ -334,12 +334,12 @@ export default {
} }
&.disabled { &.disabled {
background: #f5f5f5; background: #eeff6f;
color: #909399; color: #909399;
cursor: not-allowed; cursor: not-allowed;
&:hover { &:hover {
border-color: #e6e6e6; border-color: #e6e6e6;
background: #f5f5f5; background: #eeff6f;
} }
} }