tangjie 2026-07-10 13:43:58 +08:00
parent c4ed635cbd
commit bfaadb2d9f
4 changed files with 11 additions and 2 deletions

View File

@ -10,7 +10,7 @@ module.exports = {
javaGitBranch: "dev",
// 本地联调 safetyEval-servicecontext-path: /safetyEval默认端口 8095
// 可通过环境变量覆盖: SAFETY_EVAL_API_HOST=http://192.168.x.x:8095
API_HOST: "http://192.168.0.152",
API_HOST: "https://gbs-gateway.qhdsafety.com",
},
production: {
// 应用后端分支名称,部署上线需要

View File

@ -12,10 +12,13 @@ function EnterpriseInfo(props) {
if (!orgInfoId) {
props.orgInfoGet().then((res) => {
if (res?.data?.id) {
// 下方两行切勿更换顺序
// 下方两行切勿更换顺序
sessionStorage.setItem("orgInfoId", res?.data?.id);
setOrgInfoId(res?.data?.id);
}
else {
props.history.push("/container/EnterpriseInfo/OrgInfo");
}
});
}
}, []);

View File

@ -17,6 +17,9 @@ function QualApplication(props) {
setOrgInfoId(res?.data?.id);
}
else{
props.history.push("/container/EnterpriseInfo/OrgInfo");
}
});
}
}, []);

View File

@ -19,3 +19,6 @@ body {
display: flex;
justify-content: flex-end;
}
.micro-temp-skeleton-content{
padding: 8px;
}