fix(navigation): include encryptJobId in job detail navigation URL

This commit is contained in:
2026-04-29 10:31:39 +08:00
parent 5007c3ca4e
commit f806ea49cd
2 changed files with 2 additions and 2 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}`);
}
}