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 = () => {
if (checkLogin()) {
navTo('/pages/careerfair/careerfair');
}
};
const list = ref([]);
const pageState = reactive({
@@ -948,11 +950,15 @@ const handleNearbyClick = (options ) => {
// #endif
};
const handleNoticeClick = () =>{
if (checkLogin()) {
uni.navigateTo({
url:'/packageB/notice/index'
})
}
}
function handleInstitutionClick(type){
if (checkLogin()) {
if(type=='evaluate'){
uni.navigateTo({
url:'/packageB/institution/evaluationAgency'
@@ -964,6 +970,9 @@ function handleInstitutionClick(type){
}
}
}
// 处理服务功能点击
const handleServiceClick = (serviceType) => {
if (checkLogin()) {