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.
70 lines
1.5 KiB
70 lines
1.5 KiB
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: 'project',
|
|
component: Layout,
|
|
redirect: '/project',
|
|
children: [{
|
|
path: '/project/index',
|
|
component: () => import('@/views/project/index.vue'),
|
|
name: 'index',
|
|
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: 'industry',
|
|
component: Layout,
|
|
redirect: '/industry',
|
|
children: [{
|
|
path: '/industry/industryInfo',
|
|
component: () => import('@/views/industry/industryInfo.vue'),
|
|
name: 'industryInfo',
|
|
meta: {
|
|
title: '项目行业',
|
|
noCache: true
|
|
}
|
|
}]
|
|
},{
|
|
path: 'projectType',
|
|
component: Layout,
|
|
redirect: '/projectType',
|
|
children: [{
|
|
path: '/projectType/projectTypeInfo',
|
|
component: () => import('@/views/projectType/projectTypeInfo.vue'),
|
|
name: 'projectTypeInfo',
|
|
meta: {
|
|
title: '项目类型',
|
|
noCache: true
|
|
}
|
|
}]
|
|
}]
|
|
export default codemenu
|
|
|