routes-file-five.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * @Author: your name
  3. * @Date: 2022-01-06 10:05:44
  4. * @LastEditTime: 2022-02-15 17:33:05
  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. path: 'accountGroup',
  16. component: () => import('@/views/accountGroupManagement/index'),
  17. meta: {
  18. title: '账号组管理'
  19. },
  20. children: [{
  21. path: '/',
  22. name: 'accountGroupHome',
  23. component: () => import('@/views/accountGroupManagement/components/accountGroupHome'),
  24. meta: {
  25. title: '账号组管理'
  26. }
  27. },
  28. {
  29. path: 'Add',
  30. name: 'accountGroupAdd',
  31. component: () => import('@/views/accountGroupManagement/components/accountGroupAdd'),
  32. meta: {
  33. title: '新增账号组'
  34. }
  35. },
  36. {
  37. path: 'Edit',
  38. name: 'accountGroupEdit',
  39. component: () => import('@/views/accountGroupManagement/components/accountGroupEdit'),
  40. meta: {
  41. title: '编辑账号组'
  42. }
  43. }
  44. ]
  45. }]
  46. }
  47. const accountRoutes = {
  48. path: '/',
  49. component: Layout,
  50. redirect: '/dashboard',
  51. children: [{
  52. path: 'account',
  53. name: 'account',
  54. component: () => import('@/views/accountManagement/index'),
  55. meta: {
  56. title: '账号管理'
  57. }
  58. },
  59. {
  60. path: 'accountAdd',
  61. name: 'accountAdd',
  62. component: () => import('@/views/accountManagement/accountEdit'),
  63. meta: {
  64. title: '新增账号'
  65. }
  66. },
  67. {
  68. path: 'accountEdit',
  69. name: 'accountEdit',
  70. component: () => import('@/views/accountManagement/accountEdit'),
  71. meta: {
  72. title: '编辑账号'
  73. }
  74. }
  75. ]
  76. }
  77. export default [
  78. accountGroupRoutes,
  79. accountRoutes
  80. ]