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' } } ] },