style(base): 调整货物类型搜索栏宽度及样式优化

- 新增 cargo-type 搜索栏标签宽度属性 searchLabelWidth 为 80
- 覆盖搜索栏 label 宽度,缩小至 80px,覆盖 Avue 默认 160px
- 基础容器内 el-card 卡片 body 层 padding 设置为 0
- 调整公共样式中滚动容器的内边距为 8px
- 修正 go.scss 中 avue-tags 左边距,优化标签样式
- 减小 tags.scss 中相关元素的底部外边距至 5px
This commit is contained in:
2026-07-29 12:44:49 +08:00
parent 90d96e01a4
commit ff91e8dbd7
5 changed files with 11 additions and 3 deletions

View File

@@ -604,11 +604,17 @@ export default {
box-shadow: none;
}
// 除 basic-container 卡片内层 el-card 的 padding规范 4.4
// <EFBFBD><EFBFBD>除 basic-container 卡片内层 el-card 的 padding规范 4.4
:deep(.basic-container__card) > .el-card__body {
padding: 0;
}
// 搜索栏 label 收窄(覆盖 Avue 内置 min-width:160px
:deep(.avue-crud__search) .el-form-item_label {
min-width: 80px !important;
width: 80px !important;
}
:deep(.el-table) {
--el-table-border-color: #eff1f7;
--el-table-row-hover-bg-color: #f5f7fa;