From 1b6fb9968e39d9dedb2fb498b82ef24915cce226 Mon Sep 17 00:00:00 2001 From: my_ong <429426262@qq.com> Date: Thu, 19 Dec 2024 14:57:49 +0800 Subject: [PATCH] =?UTF-8?q?art:=20=E4=BF=AE=E6=94=B9=E6=9D=83=E9=99=90?= =?UTF-8?q?=E6=A0=87=E8=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/router/index.ts b/src/router/index.ts index 5288ce5..5038b53 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -46,7 +46,7 @@ export const routes: Array = [ }, { path: '/stock/name', // 库存管理 - name: 'STOCK', + name: 'Stock', meta: { title: 'menus.stock.name', icon: 'icon-acl', flat: true }, component: BlankLayout, redirect: () => ({ name: 'Inbound' }), @@ -73,32 +73,32 @@ export const routes: Array = [ }, { path: '/statistic/name', // 统计报表 - name: 'STATISTIC', + name: 'Statistic', meta: { title: 'menus.statistic.name', icon: 'icon-acl', flat: true }, component: BlankLayout, - redirect: () => ({ name: 'S-Inbound' }), + redirect: () => ({ name: 'Query-Stock' }), children: [ { path: '/statistic/stock', //库存 - name: 'S-stock', + name: 'Query-Stock', meta: { title: 'menus.statistic.stock', icon: 'icon-permission' }, component: () => import('../views/stock/report/materialReport-page.vue'), }, { path: '/statistic/inbound', //入库 - name: 'S-Inbound', + name: 'Query-Inbound', meta: { title: 'menus.statistic.inbound', icon: 'icon-permission' }, component: () => import('../views/stock/report/inboundReport-page.vue'), }, { path: '/statistic/outbound', //出库 - name: 'S-Outbound', + name: 'Query-Outbound', meta: { title: 'menus.statistic.outbound', icon: 'icon-permission' }, component: () => import('../views/stock/report/outboundReport-page.vue'), }, { path: '/statistic/stocktaking', //盘点 - name: 'S-stocktaking', + name: 'Query-Stocktaking', meta: { title: 'menus.statistic.stocktaking', icon: 'icon-permission' }, component: () => import('../views/stock/report/stocktakingReport-page.vue'), },