feat(借库审批流): 完整前后端实现

This commit is contained in:
DXC
2026-06-12 14:08:19 +08:00
parent 941bd20fbd
commit 7ef22a3830
7 changed files with 994 additions and 115 deletions

View File

@ -215,6 +215,22 @@ const routes: Array<RouteRecordRaw> = [
component: () => import('@/views/transaction/borrow.vue'),
meta: { title: '借库' }
},
{
path: 'borrow_approval',
name: 'BorrowApproval',
component: () => import('@/views/borrow/approval/index.vue'),
meta: {
title: '借库审批',
icon: 'Stamp',
roles: ['SUPER_ADMIN', 'SUPERVISOR']
}
},
{
path: 'borrow_apply',
name: 'BorrowApply',
component: () => import('@/views/borrow/apply/index.vue'),
meta: { title: '借库申请' }
},
{
path: 'repair',
name: 'OpRepair',