routes.ts 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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: './user/login',
  13. },
  14. ],
  15. },
  16. ],
  17. },
  18. {
  19. path: '/welcome',
  20. name: 'welcome',
  21. icon: 'smile',
  22. component: './Welcome',
  23. },
  24. // {
  25. // path: '/admin',
  26. // name: 'admin',
  27. // icon: 'crown',
  28. // access: 'canAdmin',
  29. // component: './Admin',
  30. // routes: [
  31. // {
  32. // path: '/admin/sub-page',
  33. // name: 'sub-page',
  34. // icon: 'smile',
  35. // component: './Welcome',
  36. // },
  37. // ],
  38. // },
  39. // {
  40. // name: 'list.table-list',
  41. // icon: 'table',
  42. // path: '/',
  43. // routes: [
  44. // {
  45. // name: 'list.table-list',
  46. // path: '/',
  47. // routes: [
  48. // {
  49. // name: 'list.table-list',
  50. // path: '/order',
  51. // component: './Order/Billing',
  52. // }
  53. // ]
  54. // }
  55. // ],
  56. // },
  57. {
  58. name: 'list.table-list',
  59. icon: 'table',
  60. path: '/order',
  61. component: './Order/Billing',
  62. },
  63. // {
  64. // name: 'list.table-list',
  65. // icon: 'table',
  66. // path: '/list',
  67. // component: './ListTableList',
  68. // },
  69. {
  70. path: '/',
  71. redirect: '/welcome',
  72. },
  73. {
  74. component: './404',
  75. },
  76. ];