fix
parent
24ef2969dd
commit
df66fb4f01
|
|
@ -12,9 +12,9 @@ module.exports = {
|
|||
// 可通过环境变量覆盖: SAFETY_EVAL_API_HOST=http://192.168.x.x:8095
|
||||
//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: "https://gbs-gateway.qhdsafety.com",
|
||||
API_HOST: "https://gbs-gateway.qhdsafety.com",
|
||||
//API_HOST: "http://192.168.0.103", //huwei
|
||||
},
|
||||
production: {
|
||||
|
|
|
|||
|
|
@ -340,7 +340,7 @@ const FilingTabs = ({
|
|||
<ReadonlyField label="信息公开网址 *" value={detail.infoDisclosureUrl} />
|
||||
<div style={fieldStyle}>
|
||||
<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>
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ const QualConfirm = (props) => {
|
|||
},
|
||||
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
||||
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
||||
{ title: "证书编号", dataIndex: "qualCertNo", width: 140, ellipsis: true },
|
||||
{ title: "证书编号", dataIndex: "filingNo", width: 140, ellipsis: true },
|
||||
{
|
||||
title: "安全评价业务范围",
|
||||
dataIndex: "businessScope",
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ const QualReview = (props) => {
|
|||
},
|
||||
{ title: "机构名称", dataIndex: "filingUnitName", width: 220, ellipsis: true },
|
||||
{ title: "机构类型", dataIndex: "filingUnitTypeName", width: 100 },
|
||||
{ title: "证书编号", dataIndex: "qualCertNo", width: 140, ellipsis: true },
|
||||
{ title: "证书编号", dataIndex: "filingNo", width: 140, ellipsis: true },
|
||||
{
|
||||
title: "安全评价业务范围",
|
||||
dataIndex: "businessScope",
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@ const ReviewModal = (props) => {
|
|||
name="reviewOpinion"
|
||||
rules={[{ required: true, message: "请输入综合审核意见" }]}
|
||||
>
|
||||
<TextArea rows={3} placeholder="请输入综合审核意见..." />
|
||||
<TextArea rows={3} placeholder="请输入综合审核意见..." maxLength={200} />
|
||||
</Form.Item>
|
||||
</Form>
|
||||
</Modal>
|
||||
|
|
|
|||
Loading…
Reference in New Issue