This commit is contained in:
冯辉
2026-04-30 13:28:51 +08:00
3 changed files with 23 additions and 14 deletions

View File

@@ -240,7 +240,7 @@ const checkLogin = () => {
function nextDetail(job) {
// 登录检查
if (checkLogin()) {
navTo(`/packageA/pages/post/post?jobId=${encodeURIComponent(job.jobId)}`);
navTo(`/packageA/pages/post/post?jobId=${encodeURIComponent(job.jobId)}&encryptJobId=${job.encryptJobId}`);
}
}

View File

@@ -859,7 +859,7 @@ function nextDetail(job) {
const recordData = recommedIndexDb.JobParameter(job);
recommedIndexDb.addRecord(recordData);
}
navTo(`/packageA/pages/post/post?jobId=${encodeURIComponent(job.jobId)}`);
navTo(`/packageA/pages/post/post?jobId=${encodeURIComponent(job.jobId)}&encryptJobId=${job.encryptJobId}`);
}
}

View File

@@ -756,7 +756,9 @@ const helpTaskClick = () =>{
}
//招聘会模块跳转
const handleJobFairClick = () => {
navTo('/pages/careerfair/careerfair');
if (checkLogin()) {
navTo('/pages/careerfair/careerfair');
}
};
const list = ref([]);
const pageState = reactive({
@@ -948,20 +950,27 @@ const handleNearbyClick = (options ) => {
// #endif
};
const handleNoticeClick = () =>{
uni.navigateTo({
url:'/packageB/notice/index'
})
}
function handleInstitutionClick(type){
if(type=='evaluate'){
if (checkLogin()) {
uni.navigateTo({
url:'/packageB/institution/evaluationAgency'
})
}else if (type=='training'){
uni.navigateTo({
url:'/packageB/institution/trainingInstitution'
url:'/packageB/notice/index'
})
}
}
function handleInstitutionClick(type){
if (checkLogin()) {
if(type=='evaluate'){
uni.navigateTo({
url:'/packageB/institution/evaluationAgency'
})
}else if (type=='training'){
uni.navigateTo({
url:'/packageB/institution/trainingInstitution'
})
}
}
}
// 处理服务功能点击