123456789101112131415161718192021222324252627282930 |
- /** 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: 'qiyeguanli',
- checkIcon: 'checkqiyeguanli',
- module: 'changyuntong.qiyeguanli.view',
- },
- alwaysShow: true,
- children: [{
- path: 'enterpriseAudit',
- name: 'enterpriseAudit',
- component: () =>
- import ('@/views/enterpriseManagement/enterpriseAudit'),
- meta: {
- title: '企业信息',
- icon: '',
- module: 'changyuntong.qiyeguanli.view'
- }
- }]
- }
- export default enterpriseManagementRouter
|