Merge branch 'dev-tmp1' of http://47.92.113.182:3000/cq_anquan/safety-eval-service-frontend into dev-tmp1
commit
6f19e24df4
|
|
@ -193,12 +193,7 @@ const ContractContent = ({ readOnly, ...props }) => {
|
||||||
name="projectIntro"
|
name="projectIntro"
|
||||||
rules={[{ required: true, message: "请填写项目简介" }]}
|
rules={[{ required: true, message: "请填写项目简介" }]}
|
||||||
>
|
>
|
||||||
<TextArea
|
<TextArea rows={3} placeholder="请输入项目简介" />
|
||||||
rows={3}
|
|
||||||
maxLength={500}
|
|
||||||
showCount
|
|
||||||
placeholder="请输入项目简介"
|
|
||||||
/>
|
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -229,8 +224,6 @@ const ContractContent = ({ readOnly, ...props }) => {
|
||||||
>
|
>
|
||||||
<TextArea
|
<TextArea
|
||||||
rows={3}
|
rows={3}
|
||||||
maxLength={500}
|
|
||||||
showCount
|
|
||||||
placeholder="自动带入风险分析结论,可补充说明"
|
placeholder="自动带入风险分析结论,可补充说明"
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
|
|
@ -424,12 +417,7 @@ const ContractContent = ({ readOnly, ...props }) => {
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={24}>
|
<Col span={24}>
|
||||||
<Form.Item label="国民经济行业类别" name="industryCategory">
|
<Form.Item label="国民经济行业类别" name="industryCategory">
|
||||||
<TextArea
|
<TextArea rows={2} placeholder="请输入国民经济行业类别" />
|
||||||
rows={2}
|
|
||||||
maxLength={200}
|
|
||||||
showCount
|
|
||||||
placeholder="请输入国民经济行业类别"
|
|
||||||
/>
|
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={24}>
|
<Col span={24}>
|
||||||
|
|
|
||||||
|
|
@ -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 }}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue