mirror of
https://github.com/himool/HimoolERP.git
synced 2026-01-12 04:14:28 +08:00
28 lines
No EOL
855 B
JavaScript
28 lines
No EOL
855 B
JavaScript
export default {
|
|
path: '/goods',
|
|
name: 'goods',
|
|
component: () => import('@/layouts/BaseLayout'),
|
|
redirect: '/finance/classification',
|
|
children: [
|
|
{
|
|
path: 'classification',
|
|
meta: { title: '产品分类', permission: 'classification' },
|
|
component: () => import('@/views/goods/classification/index'),
|
|
},
|
|
{
|
|
path: 'unit',
|
|
meta: { title: '产品单位', permission: 'unit' },
|
|
component: () => import('@/views/goods/unit/index'),
|
|
},
|
|
{
|
|
path: 'information',
|
|
meta: { title: '产品信息', permission: 'information' },
|
|
component: () => import('@/views/goods/information/index'),
|
|
},
|
|
{
|
|
path: 'temporary_warning',
|
|
meta: { title: '临期预警', permission: 'temporary_warning' },
|
|
component: () => import('@/views/goods/temporaryWarning/index'),
|
|
},
|
|
],
|
|
} |