|
@@ -5,36 +5,45 @@ const routes = [
|
|
|
{ path: "/", component: Mark },
|
|
|
{ path: "/mark", component: Mark, name: "Mark" },
|
|
|
{
|
|
|
+
|
|
|
path: "/admin/exam/inspected/start",
|
|
|
- component: () => import("@/features/student/inspect/Inspect.vue"),
|
|
|
+ component: () =>
|
|
|
+ import("@/features/student/studentInspect/StudentInspect.vue"),
|
|
|
},
|
|
|
{
|
|
|
+
|
|
|
path: "/admin/exam/inspected/import/start",
|
|
|
component: () =>
|
|
|
import("@/features/student/importInspect/ImportInspect.vue"),
|
|
|
},
|
|
|
{
|
|
|
+
|
|
|
path: "/admin/exam/library/inspected/start",
|
|
|
component: () => import("@/features/library/inspect/LibraryInspect.vue"),
|
|
|
},
|
|
|
{
|
|
|
+
|
|
|
path: "/admin/exam/arbitrate/start",
|
|
|
component: () => import("@/features/arbitrate/Arbitrate.vue"),
|
|
|
},
|
|
|
{
|
|
|
+
|
|
|
path: "/admin/exam/track/student",
|
|
|
name: "StudentTrack",
|
|
|
component: () => import("@/features/student/studentTrack/StudentTrack.vue"),
|
|
|
},
|
|
|
{
|
|
|
+
|
|
|
path: "/admin/exam/quality",
|
|
|
component: () => import("@/features/library/quality/Quality.vue"),
|
|
|
},
|
|
|
{
|
|
|
+
|
|
|
path: "/admin/exam/track/library",
|
|
|
component: () => import("@/features/library/libraryTrack/LibraryTrack.vue"),
|
|
|
},
|
|
|
{
|
|
|
+
|
|
|
path: "/admin/exam/track/trialLibrary",
|
|
|
name: "TrialRoute",
|
|
|
component: () => import("@/features/library/libraryTrack/LibraryTrack.vue"),
|