diff --git a/src/router/index.ts b/src/router/index.ts index bbd4f09..6d9a912 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -46,15 +46,43 @@ const routes = [ { path: "mask", name: "Mask", + component: () => import("@/views/pwoManage/infeed/mask/index.vue"), + }, + { + path: "equipment", + name: "Equipment", component: () => - import("@/views/pwoManage/infeed/mask/index.vue"), + import("@/views/pwoManage/infeed/equipment/index.vue"), }, ], }, { path: "outfeed", name: "Outfeed", - component: () => import("@/views/pwoManage/outfeed/index.vue"), + component: () => import("@/views/pwoManage/outfeed/layout.vue"), + redirect: { name: "JobReport" }, + children: [ + { + path: "jobReport", + name: "JobReport", + component: () => + import("@/views/pwoManage/outfeed/jobReport/index.vue"), + }, + { + path: "parameterConfiguration", + name: "ParameterConfiguration", + component: () => + import( + "@/views/pwoManage/outfeed/parameterConfiguration/index.vue" + ), + }, + { + path: "processGuidance", + name: "ProcessGuidance", + component: () => + import("@/views/pwoManage/outfeed/processGuidance/index.vue"), + }, + ], }, ], },