From cf7dc04db73f7e1a6925c365a90534cd0b34df9f Mon Sep 17 00:00:00 2001 From: DXC Date: Wed, 8 Apr 2026 19:08:43 +0800 Subject: [PATCH] feat(route): register repair management page in frontend router --- inventory-web/src/router/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/inventory-web/src/router/index.ts b/inventory-web/src/router/index.ts index c234bf1..a9ce21b 100644 --- a/inventory-web/src/router/index.ts +++ b/inventory-web/src/router/index.ts @@ -92,6 +92,13 @@ const routes: Array = [ name: 'InventorySummary', component: () => import('@/views/stock/inbound/inbound_summary.vue'), meta: { title: '入库记录' } + }, + // 维修管理 + { + path: 'repair', + name: 'RepairManagement', + component: () => import('@/views/stock/inbound/repair.vue'), + meta: { title: '维修管理', permission: 'inbound_repair' } } ] },