From 6f5652b90ecbb3b17b561356aa5ea9f0baf87185 Mon Sep 17 00:00:00 2001 From: DXC Date: Fri, 12 Jun 2026 14:21:03 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=80=9F=E5=BA=93=E8=8F=9C=E5=8D=95):=20?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=B7=AF=E7=94=B1=E9=A1=BA=E5=BA=8F=20+=20?= =?UTF-8?q?=E7=BB=9F=E4=B8=80=E8=8F=9C=E5=8D=95=E5=91=BD=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inventory-web/src/router/index.ts | 34 +++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/inventory-web/src/router/index.ts b/inventory-web/src/router/index.ts index 8fd2830..861b863 100644 --- a/inventory-web/src/router/index.ts +++ b/inventory-web/src/router/index.ts @@ -209,27 +209,17 @@ const routes: Array = [ meta: { title: '借库管理', icon: 'Operation' }, redirect: '/operation/borrow', children: [ - { - path: 'borrow', - name: 'OpBorrow', - 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: '借库申请' } + meta: { title: '借库选单' } + }, + { + path: 'borrow', + name: 'OpBorrow', + component: () => import('@/views/transaction/borrow.vue'), + meta: { title: '扫码借库' } }, { path: 'repair', @@ -242,6 +232,16 @@ const routes: Array = [ name: 'OpRecords', component: () => import('@/views/transaction/records.vue'), meta: { title: '借还记录' } + }, + { + path: 'borrow_approval', + name: 'BorrowApproval', + component: () => import('@/views/borrow/approval/index.vue'), + meta: { + title: '借库审批', + icon: 'Stamp', + roles: ['SUPER_ADMIN', 'SUPERVISOR'] + } } ] },