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