From a403acb9afbdf0b5aecc17c324b3ee33b565cb52 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Sat, 22 Jan 2022 10:52:24 +0800
Subject: [PATCH] 考试统计查询明细修改

---
 src/views/trainExam/examStatistics.vue |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/views/trainExam/examStatistics.vue b/src/views/trainExam/examStatistics.vue
index a1f322c..549a8e3 100644
--- a/src/views/trainExam/examStatistics.vue
+++ b/src/views/trainExam/examStatistics.vue
@@ -206,17 +206,17 @@
             </el-table-column>
             <el-table-column prop="allGrade" label="平均分" align="center">
             </el-table-column>
-            <el-table-column prop="isExam" label="考试成绩状态" align="center">
+            <el-table-column prop="qualified" label="考试成绩状态" align="center">
               <template slot-scope="scope">
                 {{
-                  scope.row.isExam == 2
-                    ? "发布成绩"
-                    : scope.row.isExam == 3
-                    ? "考试中"
-                    : scope.row.isExam == 4
+                  scope.row.qualified == 0
+                    ? "合格"
+                    : scope.row.qualified == 1
+                    ? "不合格"
+                    : scope.row.qualified == 2
+                    ? "暂未录入实操成绩"
+                    : scope.row.qualified == 3
                     ? "缺考"
-                    : scope.row.isExam == 5
-                    ? "纸质考试"
                     : ""
                 }}
               </template>

--
Gitblit v1.9.3