Explorar el Código

outlet 换名

WANG hace 6 años
padre
commit
1f257c89d8
Se han modificado 1 ficheros con 15 adiciones y 2 borrados
  1. 15 2
      src/modules/examwork/routes/routes.js

+ 15 - 2
src/modules/examwork/routes/routes.js

@@ -1,5 +1,8 @@
 import Home from "../../portal/views/home/Home.vue";
 import student from "../view/student.vue";
+import examStudentImport from "../view/examStudentImport.vue";
+import examStudent from "../view/examStudent.vue";
+import examInfo from "../view/examInfo.vue";
 
 export default [
   {
@@ -13,9 +16,19 @@ export default [
         component: student
       },
       {
-        path: "exam_student_import", //学生管理
+        path: "examStudentImport", //考生导入
         meta: { pageName: "考生导入" },
-        component: student
+        component: examStudentImport
+      },
+      {
+        path: "examStudent", //考生管理
+        meta: { pageName: "考生管理" },
+        component: examStudent
+      },
+      {
+        path: "examInfo", //考试管理
+        meta: { pageName: "考试管理" },
+        component: examInfo
       }
     ]
   }