From d2dfca6c3c4a59e2d6c86fef879bb6f5cd14b1cb Mon Sep 17 00:00:00 2001 From: wyx Date: Mon, 9 Jan 2023 09:41:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E8=AF=84=E4=BC=B0?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=AD=A6=E5=91=98=E6=83=85=E5=86=B5=E6=9F=A5?= =?UTF-8?q?=E7=9C=8B=E8=AF=84=E4=BC=B0=E8=AF=A6=E6=83=85=E9=A2=98=E7=9B=AE?= =?UTF-8?q?=E9=97=AE=E9=A2=98=EF=BC=8C=E5=A2=9E=E5=8A=A0=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/drawers/ViewAssess.vue | 20 ++++++++++---------- src/views/research/ManagePage.vue | 10 ++++++++-- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/src/components/drawers/ViewAssess.vue b/src/components/drawers/ViewAssess.vue index 2e7de809..da45233e 100644 --- a/src/components/drawers/ViewAssess.vue +++ b/src/components/drawers/ViewAssess.vue @@ -41,14 +41,14 @@
-
-
选择1:
+
+
选择{{indexss+1}}:
-
+
- {{values.singleOptionName}} + {{itteems.singleOptionName}}
@@ -56,7 +56,7 @@
-
+
评估类型:
多选
@@ -68,14 +68,14 @@
-
-
选择1:
+
+
选择{{indexss+1}}:
-
+
- {{values.multipleOptionName}} + {{itteems.multipleOptionName}}
@@ -200,7 +200,7 @@ export default { }).then(res=>{ console.log(res) if(res.data.code==200){ - let qarr = [res.data.data.assessmentEssayQuestionDtoList, res.data.data.assessmentMultipleChoiceDtoList,res.data.data.assessmentScoringQuestionDtoList,res.data.data.assessmentSingleChoiceDtoList] + let qarr = [res.data.data.essayQuestionVoList, res.data.data.multipleStemVoList,res.data.data.scoringQuestionVoList,res.data.data.singleStemVoList] let allArr = [] for(let i=0;i
学员情况
-
+
导出信息
@@ -152,6 +152,11 @@ export default { getInfoDate(); + // 导出学员信息 + function exportStudentInfo() { + window.open(`${process.env.VUE_APP_PROXY_URL}admin/assessment/manage/exportAssessmentMessage?assessmentId=${state.basicInfo.assessmentId}`) + } + //分页 const changePaginationStu = (page) => { state.evalStuListLoading = true; @@ -327,7 +332,8 @@ export default { }, ], showassess, - changePaginationStu + changePaginationStu, + exportStudentInfo }; }, };