dev_1.2
tangjie 2026-07-24 17:20:37 +08:00
parent 6d991e7675
commit 7d7c624d16
5 changed files with 9 additions and 6 deletions

View File

@ -10,10 +10,10 @@ module.exports = {
javaGitBranch: "dev", javaGitBranch: "dev",
// 本地联调 safetyEval-servicecontext-path: /safetyEval默认端口 8095 // 本地联调 safetyEval-servicecontext-path: /safetyEval默认端口 8095
// 可通过环境变量覆盖: SAFETY_EVAL_API_HOST=http://192.168.x.x:8095 // 可通过环境变量覆盖: SAFETY_EVAL_API_HOST=http://192.168.x.x:8095
API_HOST: "https://gbs-gateway.qhdsafety.com", //API_HOST: "https://gbs-gateway.qhdsafety.com",
//API_HOST: "http://192.168.0.152", //API_HOST: "http://192.168.0.152",
//API_HOST: "http://192.168.0.150", //太浅 API_HOST: "http://192.168.0.150", //太浅
// API_HOST: "http://192.168.0.152", // API_HOST: "http://192.168.0.152",
//API_HOST: "http://192.168.0.103", //huwei //API_HOST: "http://192.168.0.103", //huwei
}, },

View File

@ -141,6 +141,7 @@ const ControlContent = (props) => {
if (res?.success !== false) { if (res?.success !== false) {
message.success("项目已归档入库"); message.success("项目已归档入库");
fetchDetail(); fetchDetail();
props.getDetail?.();
} }
}; };

View File

@ -113,6 +113,7 @@ const InternalReviewContent = (props) => {
resultCode === "passed" ? "已提交" : "已保存", resultCode === "passed" ? "已提交" : "已保存",
); );
fetchDetail(); fetchDetail();
props.getDetail?.();
} }
}; };

View File

@ -114,6 +114,7 @@ const TechnicalReviewContent = (props) => {
resultCode === "1" ? "已确认技审并提交过程控制" : "已保存", resultCode === "1" ? "已确认技审并提交过程控制" : "已保存",
); );
fetchDetail(); fetchDetail();
props.getDetail?.();
} }
}; };

View File

@ -158,13 +158,13 @@ const ProjectFlow = (props) => {
break; break;
case "internal": case "internal":
children = <InternalReviewContent />; children = <InternalReviewContent getDetail={getDetail} />;
break; break;
case "technical": case "technical":
children = <TechnicalReviewContent />; children = <TechnicalReviewContent getDetail={getDetail} />;
break; break;
case "control": case "control":
children = <ControlContent />; children = <ControlContent getDetail={getDetail} />;
break; break;
default: default:
children = null; children = null;