配置出站路由

This commit is contained in:
tao
2025-12-29 08:59:07 +08:00
parent eeb3f850e9
commit 4cf0b80f8f

View File

@@ -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"),
},
],
},
],
},