From 3dc60960fc8a60188879ff3fad996b6c87a16d12 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Mon, 02 Aug 2021 19:08:42 +0800
Subject: [PATCH] 报名清册导入

---
 src/views/exam/startexam.vue |   19 +++++++++++++++----
 1 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/src/views/exam/startexam.vue b/src/views/exam/startexam.vue
index 9e78287..37abb00 100644
--- a/src/views/exam/startexam.vue
+++ b/src/views/exam/startexam.vue
@@ -388,10 +388,21 @@
         },
 
         startExam (row) {
-            this.$router.push({
-                path: `/applydetailed`,
-                query: row
-            })
+            //正式考试
+            if(row.examType==1){
+                this.$router.push({
+                    path: `/applydetailed`,
+                    query: row
+                })
+            }
+
+            //模拟考试
+            if(row.examType==2){
+                this.$router.push({
+                    path: `/trainApply`,
+                    query: row
+                })
+            }
         },
         // 新增
         questionBankRowSave (row, done, loading) {

--
Gitblit v1.9.3