feat(purchase): 新增采购管理前端页面与路由(列表+新建+审批)

This commit is contained in:
dxc
2026-05-12 16:36:57 +08:00
parent 9dfcb93146
commit 8ec6ca5944
3 changed files with 608 additions and 0 deletions

View File

@ -180,6 +180,21 @@ const routes: Array<RouteRecordRaw> = [
]
},
// 5.1 采购管理
{
path: '/purchase',
component: Layout,
meta: { title: '采购管理', icon: 'ShoppingCart' },
children: [
{
path: '',
name: 'PurchaseList',
component: () => import('@/views/purchase/index.vue'),
meta: { title: '采购申请' }
}
]
},
// 6. 借库管理
{
path: '/operation',