From 4cf0b80f8f135224b914cc0f37fadc3d0f3deb80 Mon Sep 17 00:00:00 2001 From: tao Date: Mon, 29 Dec 2025 08:59:07 +0800 Subject: [PATCH] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=87=BA=E7=AB=99=E8=B7=AF?= =?UTF-8?q?=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.ts | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) 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"), + }, + ], }, ], },