refactor(xumu): 重构理赔审核页面

- 修改页面布局和样式
- 优化理赔材料上传功能
- 添加审核信息相关字段
- 调整投保对象和审核记录的展示方式
- 优化搜索和筛选功能
This commit is contained in:
aixianling
2025-01-03 11:18:15 +08:00
parent c073c8d0bd
commit e1231d408c
7 changed files with 72 additions and 60 deletions

View File

@@ -327,6 +327,12 @@ div[flex], .flex {
gap: 20px;
}
@for $i from 2 through 50 {
&.gap-#{$i} {
gap: #{$i}px;
}
}
&.center {
justify-content: center;
}
@@ -369,17 +375,21 @@ div[flex], .flex {
}
}
@for $i from 2 through 10 {
&.sr-#{$i} {
grid-column: 1 / #{$i+1};
.sr-#{$i} {
grid-column: span #{$i};
}
&.sc-#{$i} {
grid-row: 1 / #{$i+1};
.sc-#{$i} {
grid-row: span #{$i};
}
}
.row {
grid-column: 1/-1;
}
.column {
grid-row: 1/-1;
}
}
// 2.0公共样式