|
@@ -1,3 +1,4 @@
|
|
|
+import Home from "../../portal/views/home/Home.vue";
|
|
|
import absent from "../views/absent.vue";
|
|
|
import awaitingAudit from "../views/awaitingAudit.vue";
|
|
|
import alreadyAudited from "../views/alreadyAudited.vue";
|
|
@@ -8,55 +9,68 @@ import examDetail from "../views/examDetail.vue";
|
|
|
import examScheduling from "../views/examScheduling.vue";
|
|
|
import captureDetail from "../views/captureDetail.vue";
|
|
|
import examPaperDetail from "../views/examPaperDetail.vue";
|
|
|
+import examSummary from "../views/examSummary.vue";
|
|
|
export default [
|
|
|
{
|
|
|
- path: "/oe/absent",
|
|
|
- name: "absent",
|
|
|
- component: absent //缺考登记
|
|
|
- },
|
|
|
- {
|
|
|
- path: "/oe/awaitingAudit",
|
|
|
- name: "awaitingAudit",
|
|
|
- component: awaitingAudit //监考待审
|
|
|
- },
|
|
|
- {
|
|
|
- path: "/oe/alreadyAudited",
|
|
|
- name: "alreadyAudited",
|
|
|
- component: alreadyAudited //监考已审
|
|
|
- },
|
|
|
- {
|
|
|
- path: "/oe/reexamine",
|
|
|
- name: "reexamine",
|
|
|
- component: reexamine //重考列表
|
|
|
- },
|
|
|
- {
|
|
|
- path: "/oe/illegalityNameList",
|
|
|
- name: "illegalityNameList",
|
|
|
- component: illegalityNameList //违纪名单
|
|
|
- },
|
|
|
- {
|
|
|
- path: "/oe/scoreStatistics",
|
|
|
- name: "scoreStatistics",
|
|
|
- component: scoreStatistics //成绩统计
|
|
|
- },
|
|
|
- {
|
|
|
- path: "/oe/examDetail",
|
|
|
- name: "examDetail",
|
|
|
- component: examDetail //考试详情
|
|
|
- },
|
|
|
- {
|
|
|
- path: "/oe/examScheduling",
|
|
|
- name: "examScheduling",
|
|
|
- component: examScheduling //考试进度详情
|
|
|
- },
|
|
|
- {
|
|
|
- path: "/oe/captureDetail/:examRecordDataId",
|
|
|
- name: "captureDetail",
|
|
|
- component: captureDetail //抓拍详情
|
|
|
- },
|
|
|
- {
|
|
|
- path: "/oe/examPaperDetail/:courseId/:examRecordDataId",
|
|
|
- name: "examPaperDetail",
|
|
|
- component: examPaperDetail //考卷详情
|
|
|
+ path: "/questions", //首页
|
|
|
+ meta: { auth: false },
|
|
|
+ component: Home,
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: "/oe/absent",
|
|
|
+ name: "absent",
|
|
|
+ component: absent //缺考登记
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/awaitingAudit",
|
|
|
+ name: "awaitingAudit",
|
|
|
+ component: awaitingAudit //监考待审
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/alreadyAudited",
|
|
|
+ name: "alreadyAudited",
|
|
|
+ component: alreadyAudited //监考已审
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/reexamine",
|
|
|
+ name: "reexamine",
|
|
|
+ component: reexamine //重考列表
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/illegalityNameList",
|
|
|
+ name: "illegalityNameList",
|
|
|
+ component: illegalityNameList //违纪名单
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/scoreStatistics",
|
|
|
+ name: "scoreStatistics",
|
|
|
+ component: scoreStatistics //成绩统计
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/examDetail",
|
|
|
+ name: "examDetail",
|
|
|
+ component: examDetail //考试详情
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/examScheduling",
|
|
|
+ name: "examScheduling",
|
|
|
+ component: examScheduling //考试进度详情
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/captureDetail/:examRecordDataId",
|
|
|
+ name: "captureDetail",
|
|
|
+ component: captureDetail //抓拍详情
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/examPaperDetail/:courseId/:examRecordDataId",
|
|
|
+ name: "examPaperDetail",
|
|
|
+ component: examPaperDetail //考卷详情
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: "/oe/examSummary",
|
|
|
+ name: "examSummary",
|
|
|
+ component: examSummary //考试概览
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|
|
|
];
|