新增年审任务

This commit is contained in:
linxd
2025-06-27 19:55:19 +08:00
parent 1035c0f6c3
commit bf19b53402
31 changed files with 3764 additions and 64 deletions

View File

@ -0,0 +1,100 @@
.loadingContainer {
display: flex;
justify-content: center;
align-items: center;
height: 300px;
}
.detailCard {
margin-bottom: 24px;
}
.supplierList {
display: flex;
flex-direction: column;
gap: 16px;
}
.supplierCard {
margin-bottom: 16px;
}
.indicatorList {
.indicatorItem {
padding: 8px 0;
border-bottom: 1px solid #f0f0f0;
display: flex;
align-items: center;
&:last-child {
border-bottom: none;
}
}
.indicatorIndex {
width: 30px;
font-weight: bold;
}
.indicatorId {
flex: 1;
}
}
.infoItem {
margin-bottom: 8px;
display: flex;
align-items: flex-start;
}
.label {
font-weight: 500;
margin-right: 8px;
min-width: 100px;
}
.evaluatorList {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.evaluatorTag {
margin-bottom: 8px;
}
.idList {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.emptyData {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
color: rgba(0, 0, 0, 0.45);
font-size: 14px;
}
.tableContainer {
margin-top: 16px;
}
.weightStatusInfo {
margin-bottom: 16px;
font-size: 14px;
.label {
font-weight: bold;
margin-right: 8px;
}
}
.evaluatorModalContent,
.indicatorModalContent {
max-height: 400px;
overflow-y: auto;
padding: 8px;
}