fix
parent
09fdb6304f
commit
b9936cf368
|
|
@ -90,10 +90,10 @@ const RiskAnalysisContent = ({ readOnly, ...props }) => {
|
|||
const values = await form.validateFields();
|
||||
|
||||
const { analysisDate, ...rest } = values;
|
||||
if (!rest.participants?.length) {
|
||||
message.warning("请选择风险分析人员");
|
||||
return;
|
||||
}
|
||||
// if (!rest.participants?.length) {
|
||||
// message.warning("请选择风险分析人员");
|
||||
// return;
|
||||
// }
|
||||
const res = await evalRiskAnalysisSave({
|
||||
...rest,
|
||||
projectId,
|
||||
|
|
@ -471,6 +471,7 @@ const RiskAnalysisContent = ({ readOnly, ...props }) => {
|
|||
|
||||
<AttachmentUpload
|
||||
name="riskFileUrl"
|
||||
rules={[{ required: true, message: "请上传风险分析表附件" }]}
|
||||
style={{ marginBottom: 0 }}
|
||||
label="风险分析表附件"
|
||||
accept=".pdf,.docx,.jpg,.png"
|
||||
|
|
@ -481,48 +482,7 @@ const RiskAnalysisContent = ({ readOnly, ...props }) => {
|
|||
</Form>
|
||||
</Card>
|
||||
|
||||
<Card
|
||||
title="管理办法判定提示"
|
||||
size="small"
|
||||
className="pf-rule-card pf-section"
|
||||
>
|
||||
<Row gutter={16}>
|
||||
<Col span={8}>
|
||||
<Card size="small" type="inner">
|
||||
<div>
|
||||
<strong>低度风险</strong>
|
||||
</div>
|
||||
<div className="pf-risk-card">
|
||||
小型露天采石场、加油站,以及机构熟悉且开展过类似评价工作的常规项目。
|
||||
</div>
|
||||
</Card>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Card size="small" type="inner">
|
||||
<div>
|
||||
<strong>中度风险</strong>
|
||||
</div>
|
||||
<div className="pf-risk-card">
|
||||
化工生产、金属非金属矿山、金属冶炼、陆地石油和天然气开采行业的评价项目。
|
||||
</div>
|
||||
</Card>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Card size="small" type="inner">
|
||||
<div>
|
||||
<strong>高度风险</strong>
|
||||
</div>
|
||||
<div className="pf-risk-card">
|
||||
机构未开展过的非常规项目,原则上组织专项风险分析会议,必要时总经理参加。
|
||||
</div>
|
||||
</Card>
|
||||
</Col>
|
||||
</Row>
|
||||
<div className="pf-reject-note">
|
||||
<strong>不签合同重点条件:</strong>
|
||||
超出资质范围;无法提供合法有效资料;客户提出违法或不合理要求;经济性达不到预期;评价时间不能满足;机构与被评价对象存在投资咨询、设计、监理、物资供应等利益关系。
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
|
||||
<Modal
|
||||
title="选择参与人员"
|
||||
|
|
|
|||
|
|
@ -65,9 +65,9 @@ const NoticePanel = ({ readOnly }) => (
|
|||
name="PRACTICE_NOTIFICATION"
|
||||
label="从业告知书"
|
||||
maxCount={1}
|
||||
accept=".docx"
|
||||
accept=".docx,.pdf"
|
||||
disabled={readOnly}
|
||||
extra="仅支持上传 Word 格式文件"
|
||||
extra="仅支持上传 Word、PDF 格式文件"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue