dev_1.2
tangjie 2026-07-31 09:41:49 +08:00
parent 09fdb6304f
commit b9936cf368
2 changed files with 8 additions and 48 deletions

View File

@ -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="选择参与人员"

View File

@ -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>
);