fix
parent
24ef2969dd
commit
df66fb4f01
|
|
@ -12,9 +12,9 @@ module.exports = {
|
||||||
// 可通过环境变量覆盖: SAFETY_EVAL_API_HOST=http://192.168.x.x:8095
|
// 可通过环境变量覆盖: SAFETY_EVAL_API_HOST=http://192.168.x.x:8095
|
||||||
//API_HOST: "http://localhost:80",
|
//API_HOST: "http://localhost:80",
|
||||||
|
|
||||||
API_HOST: "http://192.168.0.134",
|
// API_HOST: "http://192.168.0.134",
|
||||||
// API_HOST: "http://192.168.0.150", //太浅
|
// API_HOST: "http://192.168.0.150", //太浅
|
||||||
//API_HOST: "https://gbs-gateway.qhdsafety.com",
|
API_HOST: "https://gbs-gateway.qhdsafety.com",
|
||||||
//API_HOST: "http://192.168.0.103", //huwei
|
//API_HOST: "http://192.168.0.103", //huwei
|
||||||
},
|
},
|
||||||
production: {
|
production: {
|
||||||
|
|
|
||||||
|
|
@ -340,7 +340,7 @@ const FilingTabs = ({
|
||||||
<ReadonlyField label="信息公开网址 *" value={detail.infoDisclosureUrl} />
|
<ReadonlyField label="信息公开网址 *" value={detail.infoDisclosureUrl} />
|
||||||
<div style={fieldStyle}>
|
<div style={fieldStyle}>
|
||||||
<label style={labelStyle}>资质证书编号 *</label>
|
<label style={labelStyle}>资质证书编号 *</label>
|
||||||
<Input readOnly value={detail.qualCertNo || "-"} style={inputStyle} />
|
<Input readOnly value={detail.filingNo || "-"} style={inputStyle} />
|
||||||
<span style={{ color: "#8b95a5", fontSize: "0.72rem" }}>
|
<span style={{ color: "#8b95a5", fontSize: "0.72rem" }}>
|
||||||
初次申请无需填写,已有资质备案时填写
|
初次申请无需填写,已有资质备案时填写
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
|
|
@ -92,7 +92,7 @@ const QualConfirm = (props) => {
|
||||||
},
|
},
|
||||||
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
||||||
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
||||||
{ title: "证书编号", dataIndex: "qualCertNo", width: 140, ellipsis: true },
|
{ title: "证书编号", dataIndex: "filingNo", width: 140, ellipsis: true },
|
||||||
{
|
{
|
||||||
title: "安全评价业务范围",
|
title: "安全评价业务范围",
|
||||||
dataIndex: "businessScope",
|
dataIndex: "businessScope",
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ const QualReview = (props) => {
|
||||||
},
|
},
|
||||||
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
||||||
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
||||||
{ title: "证书编号", dataIndex: "qualCertNo", width: 140, ellipsis: true },
|
{ title: "证书编号", dataIndex: "filingNo", width: 140, ellipsis: true },
|
||||||
{
|
{
|
||||||
title: "安全评价业务范围",
|
title: "安全评价业务范围",
|
||||||
dataIndex: "businessScope",
|
dataIndex: "businessScope",
|
||||||
|
|
|
||||||
|
|
@ -198,7 +198,7 @@ const ReviewModal = (props) => {
|
||||||
name="reviewOpinion"
|
name="reviewOpinion"
|
||||||
rules={[{ required: true, message: "请输入综合审核意见" }]}
|
rules={[{ required: true, message: "请输入综合审核意见" }]}
|
||||||
>
|
>
|
||||||
<TextArea rows={3} placeholder="请输入综合审核意见..." />
|
<TextArea rows={3} placeholder="请输入综合审核意见..." maxLength={200} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Form>
|
</Form>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue