dev-tmp1
tangjie 2026-08-10 18:14:55 +08:00
parent 3124915a2e
commit 51b01849c1
3 changed files with 26 additions and 44 deletions

View File

@ -262,6 +262,12 @@ export default function StaffResumeModal({
{display(info.workExperience)}
</td>
</tr>
<tr>
<td className="resume-label">本人签字</td>
<td className="resume-sign"></td>
<td className="resume-label">从业机构确认</td>
<td className="resume-sign"></td>
</tr>
</tbody>
</table>
</div>

View File

@ -36,6 +36,12 @@
text-align: left;
}
.resume-sign {
width: 32%;
background: #fff;
height: 60px;
}
.resume-label-wide {
width: 22%;
background: #f5f5f5;

View File

@ -1,5 +1,5 @@
import React, { useState, useMemo } from "react";
import { Button, Image, Input, Select, Table, Tabs, Tag } from "antd";
import { Button, Image, Input, Select, Table, Tabs, Tag, Space } from "antd";
import { Connect } from "@cqsjjb/jjb-dva-runtime";
import { NS_QUAL_REVIEW, NS_EQUIP_INFO } from "~/enumerate/namespace";
import StaffViewModal from "~/components/StaffViewModal";
@ -477,49 +477,19 @@ const FilingTabs = ({
key: "signature",
label: "6. 机构负责人签字",
children: (
<div
style={{
border: "1px solid #d9d9d9",
borderRadius: 8,
padding: "1.25rem 1.5rem",
background: "#fafafa",
fontSize: "0.85rem",
lineHeight: 1.9,
}}
>
<p style={{ textAlign: "center", fontWeight: 600, fontSize: "0.95rem", marginBottom: "0.75rem" }}>
机构负责人签字确认
</p>
<p>
机构端已完成资质申请第六项负责人签字确认本次提交的基础信息管理人员专职安全评价师申请材料和设备清单真实准确完整
</p>
<div style={gridStyle}>
<ReadonlyField label="签字人" value={commitment.legalRepName} />
<ReadonlyField label="职务" value="法定代表人 / 机构负责人" />
<ReadonlyField label="签字方式" value="APP认证签字" />
<ReadonlyField label="签字时间" value={commitment.signDate} />
<div style={{ ...fieldStyle, ...fullSpan }}>
<label style={labelStyle}>签字文件</label>
<div style={{ display: "flex", alignItems: "center", gap: "0.5rem" }}>
{commitment.legalRepSignatureUrl ? (
<>
<PreviewUrlButton url={commitment.legalRepSignatureUrl} size="small">
查看签字件
</PreviewUrlButton>
<Tag color="success">已签字</Tag>
</>
) : (
<Tag color="warning">未签字</Tag>
)}
</div>
</div>
{commitment.legalRepSignatureUrl && (
<Image
src={commitment.legalRepSignatureUrl}
style={{ width: 120, height: 120, objectFit: "contain", marginTop: 8 }}
/>
)}
</div>
<div style={{ border: "1px solid #d9d9d9", borderRadius: 6, padding: "1.25rem 1.5rem", background: "#fafafa", fontSize: "0.85rem", lineHeight: 1.9 }}>
<p style={{ textAlign: "center", fontWeight: 600, fontSize: "0.95rem", marginBottom: "0.75rem" }}>申请单位法定代表人承诺书</p>
<p>本人{commitment.legalRepName}{detail.filingUnitName}法定代表人现代表我单位承诺如下</p>
<p>我单位自愿申请安全评价机构资质本人已经认真学习了解并掌握安全生产法行政许可法行政处罚法安全评价检测检验机构管理办法等法律法规的相关规定知悉开展安全评价工作的法律责任义务权力和风险</p>
<p>本人承诺本单位满足安全评价检测检验机构管理办法所规定的资质条件要求本人及单位三年内无重大违法失信行为申请资质所提交的有关材料真实合法有效并对其真实性合法性承担相应法律责任接受并配合有关部门对本单位开展的专业能力审查</p>
<p>如能获准资质本单位将严格按照法律法规规章标准的要求开展安全评价活动遵守执业准则和职业道德并对作出的安全评价报告结果承担法律责任自觉接受应急管理部门煤矿安全监督管理部门等行政执法部门的监督检查</p>
<p style={{ marginTop: "0.75rem" }}>法定代表人{commitment.legalRepName}已签名</p>
<Space>
{commitment.legalRepSignatureUrl&&<Image src={commitment.legalRepSignatureUrl} style={{ width: 100, height: 100 }} />}
<p>单位盖章</p>
</Space>
<p style={{ textAlign: "right" }}>{commitment.signDate}</p>
</div>
),
},