index.js 680 B

123456789101112131415161718192021222324252627
  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: 'el-icon-s-help'
  11. },
  12. alwaysShow: true,
  13. children: [{
  14. path: 'enterpriseAudit',
  15. name: 'enterpriseAudit',
  16. component: () => import('@/views/enterpriseManagement/enterpriseAudit'),
  17. meta: {
  18. title: '企业审核',
  19. icon: 'table'
  20. }
  21. }
  22. ]
  23. }
  24. export default enterpriseManagementRouter