From ff46cc24356b2cd2f23ab3cd7892e61b682d2b8c Mon Sep 17 00:00:00 2001
From: 祖安之光 <11848914+light-of-zuan@user.noreply.gitee.com>
Date: Mon, 11 May 2026 10:03:42 +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