fix: bug:线上项目节点描述改动

dev-tmp1
zhanglei 2026-08-28 14:07:34 +08:00
parent de95e1620e
commit b5f0174483
1 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ const InternalReviewContent = ({ readOnly, ...props }) => {
"dispatched": "待APP签字", "dispatched": "待APP签字",
"completed": "已手写签字", "completed": "已手写签字",
}; };
const problemCount = rows.filter( const problemCount = rows.filter(
(r) => r.reviewConclusion === "not_conform_to", (r) => r.reviewConclusion === "not_conform_to",
).length; ).length;
@ -247,13 +247,13 @@ const InternalReviewContent = ({ readOnly, ...props }) => {
/> />
<div style={{ marginTop: 12 }}> <div style={{ marginTop: 12 }}>
<Typography.Text strong>总体审核意见</Typography.Text> <Typography.Text strong>内部审核意见</Typography.Text>
<TextArea <TextArea
rows={2} rows={2}
value={overallOpinion} value={overallOpinion}
allowClear allowClear
disabled={readOnly} disabled={readOnly}
placeholder="请输入总体审核意见" placeholder="请输入内部审核意见"
maxLength={120} maxLength={120}
onChange={(e) => setOverallOpinion(e.target.value)} onChange={(e) => setOverallOpinion(e.target.value)}
style={{ marginTop: 4 }} style={{ marginTop: 4 }}