feat
parent
3124915a2e
commit
51b01849c1
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -36,6 +36,12 @@
|
|||
text-align: left;
|
||||
}
|
||||
|
||||
.resume-sign {
|
||||
width: 32%;
|
||||
background: #fff;
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
.resume-label-wide {
|
||||
width: 22%;
|
||||
background: #f5f5f5;
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
),
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue