asyncRoutes.ts 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. // 模拟后端动态生成路由
  2. import { MockMethod } from "vite-plugin-mock";
  3. import { system, permission, frame, tabs } from "@/router/enums";
  4. /**
  5. * roles:页面级别权限,这里模拟二种 "admin"、"common"
  6. * admin:管理员角色
  7. * common:普通角色
  8. */
  9. const systemRouter = {
  10. path: "/system",
  11. meta: {
  12. icon: "setting",
  13. title: "menus.hssysManagement",
  14. rank: system
  15. },
  16. children: [
  17. {
  18. path: "/system/user/index",
  19. name: "User",
  20. meta: {
  21. icon: "flUser",
  22. title: "menus.hsUser",
  23. roles: ["admin"]
  24. }
  25. },
  26. {
  27. path: "/system/role/index",
  28. name: "Role",
  29. meta: {
  30. icon: "role",
  31. title: "menus.hsRole",
  32. roles: ["admin"]
  33. }
  34. },
  35. {
  36. path: "/system/dept/index",
  37. name: "Dept",
  38. meta: {
  39. icon: "dept",
  40. title: "menus.hsDept",
  41. roles: ["admin"]
  42. }
  43. },
  44. {
  45. path: "/system/dict",
  46. component: "/system/dict/index",
  47. name: "Dict",
  48. meta: {
  49. icon: "dict",
  50. title: "menus.hsDict",
  51. keepAlive: true,
  52. roles: ["admin"]
  53. }
  54. }
  55. ]
  56. };
  57. const permissionRouter = {
  58. path: "/permission",
  59. meta: {
  60. title: "menus.permission",
  61. icon: "lollipop",
  62. rank: permission
  63. },
  64. children: [
  65. {
  66. path: "/permission/page/index",
  67. name: "PermissionPage",
  68. meta: {
  69. title: "menus.permissionPage",
  70. roles: ["admin", "common"]
  71. }
  72. },
  73. {
  74. path: "/permission/button/index",
  75. name: "PermissionButton",
  76. meta: {
  77. title: "menus.permissionButton",
  78. roles: ["admin", "common"],
  79. auths: ["btn_add", "btn_edit", "btn_delete"]
  80. }
  81. }
  82. ]
  83. };
  84. const frameRouter = {
  85. path: "/iframe",
  86. meta: {
  87. icon: "monitor",
  88. title: "menus.hsExternalPage",
  89. rank: frame
  90. },
  91. children: [
  92. {
  93. path: "/external",
  94. name: "https://yiming_chang.gitee.io/pure-admin-doc",
  95. meta: {
  96. title: "menus.externalLink",
  97. roles: ["admin", "common"]
  98. }
  99. },
  100. {
  101. path: "/iframe/pure",
  102. name: "FramePure",
  103. meta: {
  104. title: "menus.hsPureDocument",
  105. frameSrc: "https://yiming_chang.gitee.io/pure-admin-doc",
  106. roles: ["admin", "common"]
  107. }
  108. },
  109. {
  110. path: "/iframe/ep",
  111. name: "FrameEp",
  112. meta: {
  113. title: "menus.hsEpDocument",
  114. frameSrc: "https://element-plus.org/zh-CN/",
  115. roles: ["admin", "common"]
  116. }
  117. },
  118. {
  119. path: "/iframe/vue3",
  120. name: "FrameVue",
  121. meta: {
  122. title: "menus.hsVueDocument",
  123. frameSrc: "https://cn.vuejs.org/",
  124. roles: ["admin", "common"]
  125. }
  126. },
  127. {
  128. path: "/iframe/vite",
  129. name: "FrameVite",
  130. meta: {
  131. title: "menus.hsViteDocument",
  132. frameSrc: "https://cn.vitejs.dev/",
  133. roles: ["admin", "common"]
  134. }
  135. },
  136. {
  137. path: "/iframe/pinia",
  138. name: "FramePinia",
  139. meta: {
  140. title: "menus.hsPiniaDocument",
  141. frameSrc: "https://pinia.vuejs.org/zh/index.html",
  142. roles: ["admin", "common"]
  143. }
  144. },
  145. {
  146. path: "/iframe/vue-router",
  147. name: "FrameRouter",
  148. meta: {
  149. title: "menus.hsRouterDocument",
  150. frameSrc: "https://router.vuejs.org/zh/",
  151. roles: ["admin", "common"]
  152. }
  153. },
  154. {
  155. path: "/iframe/tailwindcss",
  156. name: "FrameTailwindcss",
  157. meta: {
  158. title: "menus.hsTailwindcssDocument",
  159. frameSrc: "https://tailwindcss.com/docs/installation",
  160. roles: ["admin", "common"]
  161. }
  162. }
  163. ]
  164. };
  165. const tabsRouter = {
  166. path: "/tabs",
  167. meta: {
  168. icon: "IF-team-icontabs",
  169. title: "menus.hstabs",
  170. rank: tabs
  171. },
  172. children: [
  173. {
  174. path: "/tabs/index",
  175. name: "Tabs",
  176. meta: {
  177. title: "menus.hstabs",
  178. roles: ["admin", "common"]
  179. }
  180. },
  181. // query 传参模式
  182. {
  183. path: "/tabs/query-detail",
  184. name: "TabQueryDetail",
  185. meta: {
  186. // 不在menu菜单中显示
  187. showLink: false,
  188. roles: ["admin", "common"]
  189. }
  190. },
  191. // params 传参模式
  192. {
  193. path: "/tabs/params-detail/:id",
  194. component: "params-detail",
  195. name: "TabParamsDetail",
  196. meta: {
  197. // 不在menu菜单中显示
  198. showLink: false,
  199. roles: ["admin", "common"]
  200. }
  201. }
  202. ]
  203. };
  204. export default [
  205. {
  206. url: "/getAsyncRoutes",
  207. method: "get",
  208. response: () => {
  209. return {
  210. success: true,
  211. data: [systemRouter, permissionRouter, frameRouter, tabsRouter]
  212. };
  213. }
  214. }
  215. ] as MockMethod[];