企业招聘会报名时添加校研

This commit is contained in:
xuchao
2025-12-23 17:01:14 +08:00
parent 84f29ab03e
commit e465224773

View File

@@ -274,7 +274,21 @@
$api.myRequest("/jobfair/public/job-info/list", data, "GET", 9100, {
Authorization: `Bearer ${uni.getStorageSync("Padmin-Token")}`
}).then((resData) => {
jobList.value = resData.data.list || [];
if(resData.code == 200){
let isPublishJobList = resData.data.list || [];
jobList.value = isPublishJobList.filter(job => job.isPublish === "1");
if (isPublishJobList.length > 0 && jobList.value.length === 0) {
uni.showToast({
title: '请等待岗位审核通过后,再进行报名',
icon: 'none'
});
}
}else{
uni.showToast({
title: '请前往基本信息中完善企业信息和岗位信息',
icon: 'none'
});
}
});
});
};