feat(route): register repair management page in frontend router

This commit is contained in:
DXC
2026-04-08 19:08:43 +08:00
parent 7f2b9bc7ce
commit cf7dc04db7

View File

@ -92,6 +92,13 @@ const routes: Array<RouteRecordRaw> = [
name: 'InventorySummary', name: 'InventorySummary',
component: () => import('@/views/stock/inbound/inbound_summary.vue'), component: () => import('@/views/stock/inbound/inbound_summary.vue'),
meta: { title: '入库记录' } meta: { title: '入库记录' }
},
// 维修管理
{
path: 'repair',
name: 'RepairManagement',
component: () => import('@/views/stock/inbound/repair.vue'),
meta: { title: '维修管理', permission: 'inbound_repair' }
} }
] ]
}, },