From be5704f2d6f63e32ccaaca9d1b31e34bb73cd526 Mon Sep 17 00:00:00 2001 From: yuping <82253452@qq.com> Date: Sun, 26 Feb 2023 01:01:25 +0800 Subject: [PATCH] -- fix bug --- src/components/drawers/router/RouterCommonManage.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/drawers/router/RouterCommonManage.vue b/src/components/drawers/router/RouterCommonManage.vue index 3d01f886..317ea972 100644 --- a/src/components/drawers/router/RouterCommonManage.vue +++ b/src/components/drawers/router/RouterCommonManage.vue @@ -465,6 +465,9 @@ export default { if(props.datasource.type==1){ {/* 在线课导出 */} window.open(`${process.env.VUE_APP_BASE_API}/admin/online/manage/exportOnline?chapterId=${props.datasource.chapterId}&type=${2}&targetId=${props.datasource.routerId}&taskId=${props.datasource.courseId}`) + }else if(props.datasource.type==11){ + {/* 评估导出 */} + window.open(`${process.env.VUE_APP_BASE_API}admin/assessment/manage/exportAssessmentMessage?chapterId=${props.datasource.chapterId}&type=${2}&pid=${props.datasource.routerId}&courseId=${props.datasource.courseId}&taskId=${props.datasource.id}&taskType=${props.datasource.type}`) }else{ window.open(`${process.env.VUE_APP_BASE_API}/admin/student/exportTaskStudent?currentStageId=${props.datasource.chapterId}&type=${2}&pid=${props.datasource.routerId}&taskId=${props.datasource.id}&taskType=${props.datasource.type}`) }