From 4f6cdee3d3a9967b6955aacc354bf557430c0643 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期一, 05 八月 2024 17:05:16 +0800 Subject: [PATCH] 批改 --- src/views/onlineEducation/groupExams/index.vue | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/views/onlineEducation/groupExams/index.vue b/src/views/onlineEducation/groupExams/index.vue index 72c3032..96c9c6b 100644 --- a/src/views/onlineEducation/groupExams/index.vue +++ b/src/views/onlineEducation/groupExams/index.vue @@ -61,7 +61,7 @@ </el-table-column> <el-table-column label="合格分/总分" prop="" align="center" width="120" > <template #default="scope"> - <span>{{scope.row.passScore}}/{{scope.row.judgeNum * scope.row.judgeScore + scope.row.multiNum * scope.row.multiScore + scope.row.singleNum * scope.row.singleScore}}</span> + <span>{{scope.row.passScore}}/{{scope.row.judgeNum * scope.row.judgeScore + scope.row.multiNum * scope.row.multiScore + scope.row.singleNum * scope.row.singleScore+ scope.row.easyNum * scope.row.easyScore}}</span> </template> </el-table-column> <el-table-column label="合格率" prop="passRate" align="center" /> @@ -212,9 +212,15 @@ }) } const toStuChoose = (val) => { - val.pageNum = data.queryParams.pageNum; - val.pageSize = data.queryParams.pageSize - const v = JSON.stringify(val) + const obj = { + pageNum: data.queryParams.pageNum, + pageSize: data.queryParams.pageSize, + id: val.id, + type: 'index' + } + // val.pageNum = data.queryParams.pageNum; + // val.pageSize = data.queryParams.pageSize + const v = JSON.stringify(obj) router.push({ path: "/examStu", query: { val: v } }); } const viewQuestion = (val) => { -- Gitblit v1.9.2