routes-file-four.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * @Author: Badguy
  3. * @Date: 2022-04-25 16:01:34
  4. * @LastEditTime: 2022-04-25 16:06:24
  5. * @LastEditors: your name
  6. * @Description: 账号管理
  7. * have a nice day!
  8. */
  9. import Layout from '@/layout'
  10. // 权限管理
  11. const authorityRoutes = {
  12. path: '/authority',
  13. component: Layout,
  14. meta: { roles: ['authority_menu'] },
  15. children: [
  16. {
  17. path: '/authority',
  18. component: () => import('@/views/authorityManagement/index'),
  19. meta: {
  20. title: '权限管理',
  21. icon: 'authority',
  22. imgstyle: 'ic_list_nav_permissions_default.png',
  23. imgstyleup: 'ic_list_nav_permissions_check.png'
  24. },
  25. children: [
  26. {
  27. path: '/',
  28. name: 'AuthorityHome',
  29. component: {
  30. render(c) {
  31. return c('router-view')
  32. }
  33. },
  34. redirect: '/',
  35. meta: { title: '权限项管理', isPage: 'authority_page' },
  36. children: [
  37. {
  38. path: '/',
  39. component: () => import('@/views/authorityManagement/components/authorityHome')
  40. },
  41. {
  42. path: 'appAdd',
  43. name: 'AuthorityAppAdd',
  44. component: () => import('@/views/authorityManagement/components/authorityAppAdd'),
  45. meta: { title: '新增应用' }
  46. },
  47. {
  48. path: 'appEdit',
  49. name: 'AuthorityAppEdit',
  50. component: () => import('@/views/authorityManagement/components/authorityAppEdit'),
  51. meta: { title: '编辑应用' }
  52. },
  53. {
  54. path: 'addPower',
  55. name: 'AuthorityPowerAdd',
  56. component: () => import('@/views/authorityManagement/components/authorityPowerAdd'),
  57. meta: { title: '新增权限项' }
  58. },
  59. {
  60. path: 'editPower',
  61. name: 'AuthorityPowerEdit',
  62. component: () => import('@/views/authorityManagement/components/authorityPowerEdit'),
  63. meta: { title: '编辑权限项' }
  64. }
  65. ]
  66. }
  67. ]
  68. }
  69. ]
  70. }
  71. // 角色管理
  72. const roleRoutes = {
  73. path: '/role',
  74. component: Layout,
  75. meta: { roles: ['role_menu'] },
  76. children: [
  77. {
  78. path: '/role',
  79. component: () => import('@/views/authorityManagement/components/authorityRole'),
  80. meta: {
  81. title: '角色管理',
  82. icon: 'role',
  83. imgstyle: 'ic_list_nav_character_default.png',
  84. imgstyleup: 'ic_list_nav_character_check.png'
  85. },
  86. children: [
  87. {
  88. path: '/',
  89. name: 'AuthorityRoleHome',
  90. component: {
  91. render(c) {
  92. return c('router-view')
  93. }
  94. },
  95. redirect: '/',
  96. meta: { title: '角色管理', isPage: 'role_page' },
  97. children: [
  98. {
  99. path: '/',
  100. component: () => import('@/views/authorityManagement/components/authorityRoleHome')
  101. },
  102. {
  103. path: 'addRole',
  104. name: 'AuthorityRoleAdd',
  105. component: () => import('@/views/authorityManagement/components/authorityRoleAdd'),
  106. meta: { title: '新增角色' }
  107. },
  108. {
  109. path: 'editRole',
  110. name: 'AuthorityRoleEdit',
  111. component: () => import('@/views/authorityManagement/components/authorityRoleEdit'),
  112. meta: { title: '编辑角色' }
  113. }
  114. ]
  115. }
  116. ]
  117. }
  118. ]
  119. }
  120. // 账号管理
  121. const accountRoutes = {
  122. path: '/account',
  123. component: Layout,
  124. meta: { roles: ['account_menu'] },
  125. children: [
  126. {
  127. path: '/account',
  128. name: 'accountManagement',
  129. component: () => import('@/views/accountManagement'),
  130. meta: {
  131. title: '账号管理',
  132. icon: 'account',
  133. imgstyle: 'ic_list_nav_account_default.png',
  134. imgstyleup: 'ic_list_nav_account_check.png'
  135. },
  136. children: [
  137. {
  138. path: '/account',
  139. name: 'accountHome',
  140. component: {
  141. render(c) {
  142. return c('router-view')
  143. }
  144. },
  145. redirect: '/account',
  146. meta: {
  147. title: '账号管理',
  148. roles: ['account_page']
  149. },
  150. children: [
  151. {
  152. path: '/account',
  153. component: () => import('@/views/accountManagement/components/accountHome')
  154. },
  155. {
  156. path: 'accountAdd',
  157. name: 'accountAdd',
  158. component: () => import('@/views/accountManagement/components/accountEdit'),
  159. meta: {
  160. title: '新增账号'
  161. }
  162. },
  163. {
  164. path: 'accountEdit',
  165. name: 'accountEdit',
  166. component: () => import('@/views/accountManagement/components/accountEdit'),
  167. meta: {
  168. title: '编辑账号',
  169. doesAccountExist: true
  170. }
  171. }
  172. ]
  173. }
  174. ]
  175. }
  176. ]
  177. }
  178. export default [authorityRoutes, roleRoutes, accountRoutes]