From 42ff14adc1372f45d7c99b7c37636503dae70d3e Mon Sep 17 00:00:00 2001 From: duan Date: Mon, 15 Aug 2022 09:08:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(src/router/modules/reagent.js):=20?= =?UTF-8?q?=E5=AD=90=E8=B7=AF=E7=94=B1=E7=82=B9=E5=87=BB=E5=90=8E=EF=BC=8C?= =?UTF-8?q?=E9=AB=98=E4=BA=AE=E4=B8=BB=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/modules/reagent.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/router/modules/reagent.js b/src/router/modules/reagent.js index ecb73c1..2510a9c 100644 --- a/src/router/modules/reagent.js +++ b/src/router/modules/reagent.js @@ -36,56 +36,56 @@ const reagentRouter = [ name: 'StoreInfo', component: () => import('@/views/reagent/report/storeinfo/index'), hidden: true, - meta: { title: '库存信息总览', icon: '报表统计', classification: 'reagent' } + meta: { title: '库存信息总览', icon: '报表统计', classification: 'reagent', activeMenu: '/reagent/report/index' } }, { path: 'reagentinfo', name: 'ReagentInfo', component: () => import('@/views/reagent/report/reagentinfo/index'), hidden: true, - meta: { title: '试剂信息详情', icon: '报表统计', classification: 'reagent' } + meta: { title: '试剂信息详情', icon: '报表统计', classification: 'reagent', activeMenu: '/reagent/report/index' } }, { path: 'warehousinginfo', name: 'WarehousingInfo', component: () => import('@/views/reagent/report/warehousinginfo/index'), hidden: true, - meta: { title: '入库信息查询', icon: '报表统计', classification: 'reagent' } + meta: { title: '入库信息查询', icon: '报表统计', classification: 'reagent', activeMenu: '/reagent/report/index' } }, { path: 'inventoryconsuminfo', name: 'InventoryConsumInfo', component: () => import('@/views/reagent/report/inventoryconsum/index'), hidden: true, - meta: { title: '库存消耗', icon: '报表统计', classification: 'reagent' } + meta: { title: '库存消耗', icon: '报表统计', classification: 'reagent', activeMenu: '/reagent/report/index' } }, { path: 'reagentconsuminfo', name: 'ReagentConsumInfo', component: () => import('@/views/reagent/report/reagentconsum/index'), hidden: true, - meta: { title: '试剂消耗', icon: '报表统计', classification: 'reagent' } + meta: { title: '试剂消耗', icon: '报表统计', classification: 'reagent', activeMenu: '/reagent/report/index' } }, { path: 'userconsuminfo', name: 'UserConsumInfo', component: () => import('@/views/reagent/report/userconsum/index'), hidden: true, - meta: { title: '人员用量消耗', icon: '报表统计', classification: 'reagent' } + meta: { title: '人员用量消耗', icon: '报表统计', classification: 'reagent', activeMenu: '/reagent/report/index' } }, { path: 'usefrequencyinfo', name: 'UseFrequencyInfo', component: () => import('@/views/reagent/report/usefrequency/index'), hidden: true, - meta: { title: '使用频率', icon: '报表统计', classification: 'reagent' } + meta: { title: '使用频率', icon: '报表统计', classification: 'reagent', activeMenu: '/reagent/report/index' } }, { path: 'recordinfo/:t', name: 'RecordInfo', component: () => import('@/views/reagent/report/record/index'), hidden: true, - meta: { title: '记录', icon: '报表统计', classification: 'reagent' } + meta: { title: '记录', icon: '报表统计', classification: 'reagent', activeMenu: '/reagent/report/index' } } ] },