asyncRoutes.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. // 根据角色动态生成路由
  2. import { MockMethod } from "vite-plugin-mock";
  3. // http://mockjs.com/examples.html#Object
  4. const systemRouter = {
  5. path: "/system",
  6. redirect: "/system/user/index",
  7. meta: {
  8. icon: "setting",
  9. title: "menus.hssysManagement",
  10. i18n: true,
  11. rank: 6
  12. },
  13. children: [
  14. {
  15. path: "/system/user/index",
  16. name: "user",
  17. meta: {
  18. title: "menus.hsBaseinfo",
  19. i18n: true
  20. }
  21. },
  22. {
  23. path: "/system/dict/index",
  24. name: "dict",
  25. meta: {
  26. title: "menus.hsDict",
  27. i18n: true,
  28. keepAlive: true
  29. }
  30. }
  31. ]
  32. };
  33. const permissionRouter = {
  34. path: "/permission",
  35. redirect: "/permission/page/index",
  36. meta: {
  37. title: "menus.permission",
  38. icon: "lollipop",
  39. i18n: true,
  40. rank: 7
  41. },
  42. children: [
  43. {
  44. path: "/permission/page/index",
  45. name: "permissionPage",
  46. meta: {
  47. title: "menus.permissionPage",
  48. i18n: true
  49. }
  50. },
  51. {
  52. path: "/permission/button/index",
  53. name: "permissionButton",
  54. meta: {
  55. title: "menus.permissionButton",
  56. i18n: true,
  57. authority: []
  58. }
  59. }
  60. ]
  61. };
  62. const frameRouter = {
  63. path: "/iframe",
  64. redirect: "/iframe/pure",
  65. meta: {
  66. icon: "monitor",
  67. title: "menus.hsExternalPage",
  68. i18n: true,
  69. rank: 10
  70. },
  71. children: [
  72. {
  73. path: "/iframe/pure",
  74. name: "reFramePure",
  75. meta: {
  76. i18n: true,
  77. title: "menus.hsPureDocument",
  78. frameSrc: "https://pure-admin-doc.vercel.app"
  79. }
  80. },
  81. {
  82. path: "/external",
  83. name: "https://pure-admin-doc.vercel.app",
  84. meta: {
  85. title: "menus.externalLink",
  86. i18n: true
  87. }
  88. },
  89. {
  90. path: "/iframe/ep",
  91. name: "reFrameEp",
  92. meta: {
  93. i18n: true,
  94. title: "menus.hsEpDocument",
  95. frameSrc: "https://element-plus.gitee.io/zh-CN/"
  96. }
  97. }
  98. ]
  99. };
  100. const tabsRouter = {
  101. path: "/tabs",
  102. redirect: "/tabs/index",
  103. meta: {
  104. icon: "IF-team-icontabs",
  105. title: "menus.hstabs",
  106. i18n: true,
  107. rank: 12
  108. },
  109. children: [
  110. {
  111. path: "/tabs/index",
  112. name: "reTabs",
  113. meta: {
  114. title: "menus.hstabs",
  115. i18n: true
  116. }
  117. },
  118. {
  119. path: "/tabs/detail",
  120. name: "tabDetail",
  121. meta: {
  122. title: "",
  123. showLink: false,
  124. i18n: false,
  125. dynamicLevel: 3,
  126. refreshRedirect: "/tabs/index"
  127. }
  128. }
  129. ]
  130. };
  131. // 添加不同按钮权限到/permission/button页面中
  132. function setDifAuthority(authority, routes) {
  133. routes.children[1].meta.authority = [authority];
  134. return routes;
  135. }
  136. export default [
  137. {
  138. url: "/getAsyncRoutes",
  139. method: "get",
  140. response: ({ query }) => {
  141. if (query.name === "admin") {
  142. return {
  143. code: 0,
  144. info: [
  145. tabsRouter,
  146. frameRouter,
  147. systemRouter,
  148. setDifAuthority("v-admin", permissionRouter)
  149. ]
  150. };
  151. } else {
  152. return {
  153. code: 0,
  154. info: [tabsRouter, setDifAuthority("v-test", permissionRouter)]
  155. };
  156. }
  157. }
  158. }
  159. ] as MockMethod[];