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' } } ] },