You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import Layout from '@/layout'
|
|
|
|
|
|
|
|
const codemenu = [{
|
|
|
|
path: '/kehu',
|
|
|
|
component: Layout,
|
|
|
|
redirect: '/customermanagement',
|
|
|
|
children: [{
|
|
|
|
path: '/customermanagement',
|
|
|
|
component: () => import('@/views/customermanagement/customermanagement.vue'),
|
|
|
|
name: 'CustomerManagement',
|
|
|
|
meta: {
|
|
|
|
title: '客户管理',
|
|
|
|
noCache: true
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/enterprise',
|
|
|
|
component: Layout,
|
|
|
|
redirect: '/index',
|
|
|
|
children: [{
|
|
|
|
path: '/enterprise/index',
|
|
|
|
component: () => import('@/views/enterprise/index.vue'),
|
|
|
|
name: 'index',
|
|
|
|
meta: {
|
|
|
|
title: '企业管理',
|
|
|
|
noCache: true
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},{
|
|
|
|
path: 'storehouse',
|
|
|
|
component: Layout,
|
|
|
|
redirect: '/index',
|
|
|
|
children: [{
|
|
|
|
path: '/storehouse/index',
|
|
|
|
component: () => import('@/views/storehouse/index.vue'),
|
|
|
|
name: 'index',
|
|
|
|
meta: {
|
|
|
|
title: '仓库管理',
|
|
|
|
noCache: true
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
}]
|
|
|
|
export default codemenu
|