新增年审任务

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,85 @@
// 步骤表单相关样式 - 特定于任务管理的样式
.stepsContainer {
margin: 16px 0 24px;
padding: 24px 0;
background-color: #fff;
border-radius: 2px;
}
.stepsLayout {
margin: 16px 0;
}
.stepsLeft {
padding: 24px 0;
background-color: #fff;
border-radius: 2px;
}
.stepsRight {
display: flex;
flex-direction: column;
}
.verticalSteps {
height: 100%;
:global {
.ant-steps-item-description {
max-width: 160px;
color: rgba(0, 0, 0, 0.45);
font-size: 12px;
}
}
}
.stepsContent {
margin-top: 0;
padding: 24px;
background-color: #fff;
border-radius: 2px;
min-height: 300px;
flex: 1;
}
.toolbar {
margin-bottom: 16px;
}
.stepsAction {
margin-top: 24px;
text-align: center;
}
// 表单相关特定样式
.requiredLabel::before {
content: '*';
color: #ff4d4f;
margin-right: 4px;
}
.selectWithClear {
position: relative;
.clearIcon {
position: absolute;
top: 50%;
right: 24px;
transform: translateY(-50%);
color: rgba(0, 0, 0, 0.25);
cursor: pointer;
z-index: 1;
&:hover {
color: rgba(0, 0, 0, 0.45);
}
}
}
.basicInfoStep {
.ant-form-item-label > label {
font-weight: 500;
}
}
// 供应商选择步骤样式
.supplierSelectStep {
}