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.

45 lines
921 B

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: '/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