diff --git a/src/views/growth/growthDetails.vue b/src/views/growth/growthDetails.vue index f62043a..6feb748 100644 --- a/src/views/growth/growthDetails.vue +++ b/src/views/growth/growthDetails.vue @@ -547,7 +547,7 @@ async function toFinish(d) { examType: d.info.examType, }; const path = - TASK_TYPES.path[d.courseType](params) + d.info.examinationPaperId; + TASK_TYPES.path[d.courseType](params) + d.info.examinationTestId; // 增加异步防止ios阻止弹窗弹出 setTimeout(() => { window.open(path, "_top"); diff --git a/src/views/growth/growthPath.vue b/src/views/growth/growthPath.vue index 0aa36fe..dd24144 100644 --- a/src/views/growth/growthPath.vue +++ b/src/views/growth/growthPath.vue @@ -784,7 +784,7 @@ async function toFinish(d) { examType: d.info.examType, }; const path = - TASK_TYPES.path[d.courseType](params) + d.info.examinationPaperId; + TASK_TYPES.path[d.courseType](params) + d.info.examinationTestId; // 增加异步防止ios阻止弹窗弹出 setTimeout(() => { window.open(path, "_top");