asyncRoutes.ts 2.6 KB

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