123456789101112131415161718192021222324252627 |
- /** When your routing table is too long, you can split it into small modules**/
- import Layout from '@/layout'
- const enterpriseManagementRouter = {
- path: '/enterpriseManagement',
- component: Layout,
- redirect: 'noRedirect',
- name: 'enterpriseManagement',
- meta: {
- title: '企业管理',
- icon: 'el-icon-s-help'
- },
- alwaysShow: true,
- children: [{
- path: 'enterpriseAudit',
- name: 'enterpriseAudit',
- component: () => import('@/views/enterpriseManagement/enterpriseAudit'),
- meta: {
- title: '企业审核',
- icon: 'table'
- }
- }
- ]
- }
- export default enterpriseManagementRouter
|