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", 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: "http://192.168.0.152", API_HOST: "https://gbs-gateway.qhdsafety.com",
}, },
production: { production: {
// 应用后端分支名称,部署上线需要 // 应用后端分支名称,部署上线需要

View File

@ -16,6 +16,9 @@ function EnterpriseInfo(props) {
sessionStorage.setItem("orgInfoId", res?.data?.id); sessionStorage.setItem("orgInfoId", res?.data?.id);
setOrgInfoId(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); setOrgInfoId(res?.data?.id);
} }
else{
props.history.push("/container/EnterpriseInfo/OrgInfo");
}
}); });
} }
}, []); }, []);

View File

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