index.js 817 B

123456789101112131415161718192021222324252627282930
  1. /** When your routing table is too long, you can split it into small modules**/
  2. import Layout from '@/layout'
  3. const enterpriseManagementRouter = {
  4. path: '/enterpriseManagement',
  5. component: Layout,
  6. redirect: 'noRedirect',
  7. name: 'enterpriseManagement',
  8. meta: {
  9. title: '企业管理',
  10. icon: 'qiyeguanli',
  11. checkIcon: 'checkqiyeguanli',
  12. module: 'changyuntong.qiyeguanli.view',
  13. },
  14. alwaysShow: true,
  15. children: [{
  16. path: 'enterpriseAudit',
  17. name: 'enterpriseAudit',
  18. component: () =>
  19. import ('@/views/enterpriseManagement/enterpriseAudit'),
  20. meta: {
  21. title: '企业信息',
  22. icon: '',
  23. module: 'changyuntong.qiyeguanli.view'
  24. }
  25. }]
  26. }
  27. export default enterpriseManagementRouter