fix: 修复物料管理菜单空白,修正子菜单显示名称

This commit is contained in:
DXC
2026-06-05 15:41:05 +08:00
parent 907c083107
commit 1def8c7747

View File

@ -39,11 +39,12 @@ const routes: Array<RouteRecordRaw> = [
] ]
}, },
// 3. 基础信息 // 3. 物料管理
{ {
path: '/material', path: '/material',
component: Layout, component: Layout,
redirect: '/material/index', redirect: '/material/index',
meta: { title: '物料管理', icon: 'Box' },
children: [ children: [
{ {
path: 'index', path: 'index',
@ -55,7 +56,7 @@ const routes: Array<RouteRecordRaw> = [
path: 'buyOdoo', path: 'buyOdoo',
name: 'BuyOdoo', name: 'BuyOdoo',
component: () => import('@/views/material/buyOdoo.vue'), component: () => import('@/views/material/buyOdoo.vue'),
meta: { title: '物料管理(Odoo)', icon: 'Grid' } meta: { title: '基础信息(Odoo)', icon: 'Grid' }
} }
] ]
}, },