fix
parent
e2d84479dd
commit
78bfbee04b
|
|
@ -13,8 +13,8 @@ module.exports = {
|
|||
//API_HOST: "http://localhost:80",
|
||||
|
||||
// API_HOST: "http://192.168.0.134",
|
||||
API_HOST: "http://192.168.0.150", //太浅
|
||||
// API_HOST: "https://gbs-gateway.qhdsafety.com",
|
||||
// API_HOST: "http://192.168.0.150", //太浅
|
||||
API_HOST: "https://gbs-gateway.qhdsafety.com",
|
||||
// API_HOST: "http://192.168.0.103", //huwei
|
||||
},
|
||||
production: {
|
||||
|
|
|
|||
|
|
@ -373,10 +373,10 @@ export const EVAL_TYPE_MAP = EVAL_TYPE_OPTIONS.reduce((acc, cur) => {
|
|||
|
||||
/** 登记半径选项 */
|
||||
export const CHECKIN_RADIUS_OPTIONS = [
|
||||
{ label: "100 米", value: 100 },
|
||||
{ label: "200 米", value: 200 },
|
||||
{ label: "300 米", value: 300 },
|
||||
{ label: "500 米", value: 500 },
|
||||
{ label: "1 公里", value: 1000 },
|
||||
{ label: "2 公里", value: 2000 },
|
||||
{ label: "3 公里", value: 3000 },
|
||||
];
|
||||
|
||||
/** 项目规则 — 资料类别枚举 */
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ export const FILING_MATERIAL_TEMPLATE = [
|
|||
{ id: 6, materialType: 6, materialContent: "固定资产法定证明材料", materialFormat: null, attachmentDesc: "纸质版扫描件", materialRemark: null, requiredFlag: 1 },
|
||||
{ id: 7, materialType: 7, materialContent: "工作场所及档案室面积证明材料", materialFormat: null, attachmentDesc: "纸质版扫描件", materialRemark: "房产证、租赁协议等", requiredFlag: 1 },
|
||||
{ id: 8, materialType: 8, materialContent: "安全评价师专业能力及认定方式证明", materialFormat: null, attachmentDesc: "纸质版扫描件", materialRemark: "学历证书、职称证及其他相关证明材料", requiredFlag: 1 },
|
||||
{ id: 9, materialType: 9, materialContent: "专职技术负责人和支撑过程控制负责人证明材料", materialFormat: null, attachmentDesc: "纸质版扫描件", materialRemark: "任命文件、简历、职称证等", requiredFlag: 1 },
|
||||
{ id: 9, materialType: 9, materialContent: "专职技术负责人和过程控制负责人证明材料", materialFormat: null, attachmentDesc: "纸质版扫描件", materialRemark: "任命文件、简历、职称证等", requiredFlag: 1 },
|
||||
{ id: 10, materialType: 10, materialContent: "机构内部管理制度(非受控版)", materialFormat: null, attachmentDesc: "纸质版扫描件", materialRemark: null, requiredFlag: 1 },
|
||||
{ id: 11, materialType: 11, materialContent: "安全评价机构资质证书正本及副本(复印件)", materialFormat: null, attachmentDesc: "纸质版扫描件", materialRemark: null, requiredFlag: 1, filedOnly: true },
|
||||
];
|
||||
|
|
|
|||
|
|
@ -340,7 +340,7 @@ const RiskAnalysisContent = ({ readOnly, ...props }) => {
|
|||
<TextArea
|
||||
rows={4}
|
||||
placeholder="填写项目简介、投资规模、地理位置、周边环境、主要设施及客户要求"
|
||||
maxLength={500}
|
||||
maxLength={2000}
|
||||
showCount
|
||||
/>
|
||||
</Form.Item>
|
||||
|
|
|
|||
|
|
@ -386,10 +386,9 @@ const SurveyContent = ({ readOnly, ...props }) => {
|
|||
const uploaded = (stepFiles?.[idx] || []).some(
|
||||
(f) => f.status === "done" && f.url,
|
||||
);
|
||||
console.log(stepFiles)
|
||||
return {
|
||||
title: s.label,
|
||||
...(uploaded ? { status: "finish" } : {}),
|
||||
...(uploaded ? { status: "finish" } : {status: "wait"}),
|
||||
};
|
||||
})}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue