fix:专区-社招新员工跳转逻辑调整

This commit is contained in:
zxj
2025-11-18 19:20:39 +08:00
parent d6d27121df
commit 133b35b51e
5 changed files with 9 additions and 14 deletions

View File

@@ -426,7 +426,7 @@ export default {
// 从后端获取用户信息和报名状态
const res = await getWelcomeData();
if (res.status === 200 && res.data) {
if (res.data?.approvalResults != 1) {
if (res.data?.approvalResults && res.data?.approvalResults != 1) {
this.$router.push("/new-employee/study");
return;
}