routes-file-five.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * @Author: your name
  3. * @Date: 2022-01-06 10:05:44
  4. * @LastEditTime: 2022-02-18 18:16:12
  5. * @LastEditors: your name
  6. * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  7. * @FilePath: \src\router\routes\routes-file-five.js
  8. */
  9. import Layout from '@/layout'
  10. const accountGroupRoutes = {
  11. path: '/',
  12. component: Layout,
  13. redirect: '/dashboard',
  14. children: [
  15. {
  16. path: 'accountGroup',
  17. component: () => import('@/views/accountGroupManagement/index'),
  18. meta: {
  19. title: '账号组管理'
  20. },
  21. children: [
  22. {
  23. path: '/',
  24. name: 'accountGroupHome',
  25. component: () => import('@/views/accountGroupManagement/components/accountGroupHome'),
  26. meta: {
  27. title: '账号组管理'
  28. }
  29. },
  30. {
  31. path: 'Add',
  32. name: 'accountGroupAdd',
  33. component: () => import('@/views/accountGroupManagement/components/accountGroupAdd'),
  34. meta: {
  35. title: '新增账号组'
  36. }
  37. },
  38. {
  39. path: 'Edit',
  40. name: 'accountGroupEdit',
  41. component: () => import('@/views/accountGroupManagement/components/accountGroupEdit'),
  42. meta: {
  43. title: '编辑账号组'
  44. }
  45. }
  46. ]
  47. }
  48. ]
  49. }
  50. const accountRoutes = {
  51. path: '/',
  52. component: Layout,
  53. redirect: '/dashboard',
  54. children: [
  55. {
  56. path: 'account',
  57. name: '',
  58. component: () => import('@/views/accountManagement'),
  59. meta: {
  60. title: '账号管理'
  61. },
  62. children: [
  63. {
  64. path: '/',
  65. name: 'accountHome',
  66. component: () => import('@/views/accountManagement/components/accountHome'),
  67. meta: {
  68. title: '账号管理'
  69. }
  70. },
  71. {
  72. path: 'accountAdd',
  73. name: 'accountAdd',
  74. component: () => import('@/views/accountManagement/components/accountEdit'),
  75. meta: {
  76. title: '新增账号'
  77. }
  78. },
  79. {
  80. path: 'accountEdit',
  81. name: 'accountEdit',
  82. component: () => import('@/views/accountManagement/components/accountEdit'),
  83. meta: {
  84. title: '编辑账号',
  85. doesAccountExist: true
  86. }
  87. }
  88. ]
  89. }
  90. ]
  91. }
  92. export default [accountGroupRoutes, accountRoutes]