内测bug修复

master
LiuJiaNan 2026-04-01 15:45:01 +08:00
parent 9b6de27939
commit 608d25d8b7
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ const ViewEvaluationModal = (props) => {
label: "是否符合", label: "是否符合",
children: getLabelName({ list: EVALUATION_IS_COMPLIANT_ENUM, status: item.isCompliant }) || "未考评", children: getLabelName({ list: EVALUATION_IS_COMPLIANT_ENUM, status: item.isCompliant }) || "未考评",
}, },
...(item.isCompliant === 0 ? [{ label: "不符合原因", children: "nonCompliantReason", span: 2 }] : []), ...(item.isCompliant === 0 ? [{ label: "不符合原因", children: item.nonCompliantReason, span: 2 }] : []),
])), ])),
]} ]}
/> />