routes.js 948B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. export default [
  2. {
  3. path: '/user',
  4. layout: false,
  5. routes: [
  6. {
  7. path: '/user',
  8. routes: [
  9. {
  10. name: 'login',
  11. path: '/user/login',
  12. component: '@/pages/user/Login',
  13. },
  14. ],
  15. },
  16. {
  17. component: '@/pages/404',
  18. },
  19. ],
  20. },
  21. {
  22. path: '/dashboard',
  23. name: '工作台',
  24. icon: 'DashboardOutlined',
  25. component: './dashboard',
  26. },
  27. {
  28. path: '/',
  29. name: '工作台',//暂定
  30. redirect: '/invoiceFill',
  31. hideInMenu: true,
  32. },
  33. {
  34. path: '/invoiceFill',
  35. name: '班级列表',
  36. icon: 'ProfileOutlined',
  37. component: '@/pages/invoiceFill',
  38. },
  39. {
  40. path: '/invoiceFill/edit.jsx',
  41. name: '班级编辑',
  42. icon: 'ProfileOutlined',
  43. component: '@/pages/invoiceFill/edit.jsx',
  44. hideInMenu:true
  45. },
  46. {
  47. path: '/',
  48. redirect: '/welcome',
  49. },
  50. {
  51. component: './404',
  52. },
  53. ];