From 1def8c77479ec47ab2b5f2652dbb6f7600f5f9e5 Mon Sep 17 00:00:00 2001 From: DXC Date: Fri, 5 Jun 2026 15:41:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=89=A9=E6=96=99?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E8=8F=9C=E5=8D=95=E7=A9=BA=E7=99=BD=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E5=AD=90=E8=8F=9C=E5=8D=95=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inventory-web/src/router/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/inventory-web/src/router/index.ts b/inventory-web/src/router/index.ts index cc5cefd..e3d886b 100644 --- a/inventory-web/src/router/index.ts +++ b/inventory-web/src/router/index.ts @@ -39,11 +39,12 @@ const routes: Array = [ ] }, - // 3. 基础信息 + // 3. 物料管理 { path: '/material', component: Layout, redirect: '/material/index', + meta: { title: '物料管理', icon: 'Box' }, children: [ { path: 'index', @@ -55,7 +56,7 @@ const routes: Array = [ path: 'buyOdoo', name: 'BuyOdoo', component: () => import('@/views/material/buyOdoo.vue'), - meta: { title: '物料管理(Odoo式)', icon: 'Grid' } + meta: { title: '基础信息(Odoo)', icon: 'Grid' } } ] },