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.

58 lines
1.2 KiB

import Layout from '@/layout'
const codemenu = [{
2 years ago
path: '/kehu',
component: Layout,
2 years ago
redirect: '/customermanagement',
children: [{
2 years ago
path: '/customermanagement',
component: () => import('@/views/customermanagement/customermanagement.vue'),
name: 'CustomerManagement',
meta: {
2 years ago
title: '客户管理',
noCache: true
}
}]
2 years ago
},
{
path: 'project',
component: Layout,
redirect: '/project',
children: [{
path: '/project/index',
component: () => import('@/views/project/index.vue'),
name: 'index',
meta: {
title: '项目列表',
noCache: true
}
}]
},{
2 years ago
path: '/enterprise',
component: Layout,
redirect: '/index',
children: [{
path: '/enterprise/index',
component: () => import('@/views/enterprise/index.vue'),
name: 'index',
meta: {
title: '企业管理',
noCache: true
}
}]
},{
path: 'dataDict',
2 years ago
component: Layout,
redirect: '/dataDict',
2 years ago
children: [{
path: '/dataDict/index',
component: () => import('@/views/dataDict/index.vue'),
2 years ago
name: 'index',
meta: {
title: '数据字典',
2 years ago
noCache: true
}
}]
}]
export default codemenu