asyncRoutes.ts 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. // 模拟后端动态生成路由
  2. import { defineFakeRoute } from "vite-plugin-fake-server/client";
  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: "ri:settings-3-line",
  13. title: "menus.hssysManagement",
  14. rank: system
  15. },
  16. children: [
  17. {
  18. path: "/system/user/index",
  19. name: "SystemUser",
  20. meta: {
  21. icon: "ri:admin-line",
  22. title: "menus.hsUser",
  23. roles: ["admin"]
  24. }
  25. },
  26. {
  27. path: "/system/role/index",
  28. name: "SystemRole",
  29. meta: {
  30. icon: "ri:admin-fill",
  31. title: "menus.hsRole",
  32. roles: ["admin"]
  33. }
  34. },
  35. {
  36. path: "/system/menu/index",
  37. name: "SystemMenu",
  38. meta: {
  39. icon: "ep:menu",
  40. title: "menus.hsSystemMenu",
  41. roles: ["admin"]
  42. }
  43. },
  44. {
  45. path: "/system/dept/index",
  46. name: "SystemDept",
  47. meta: {
  48. icon: "ri:git-branch-line",
  49. title: "menus.hsDept",
  50. roles: ["admin"]
  51. }
  52. }
  53. ]
  54. };
  55. const permissionRouter = {
  56. path: "/permission",
  57. meta: {
  58. title: "menus.permission",
  59. icon: "ep:lollipop",
  60. rank: permission
  61. },
  62. children: [
  63. {
  64. path: "/permission/page/index",
  65. name: "PermissionPage",
  66. meta: {
  67. title: "menus.permissionPage",
  68. roles: ["admin", "common"]
  69. }
  70. },
  71. {
  72. path: "/permission/button/index",
  73. name: "PermissionButton",
  74. meta: {
  75. title: "menus.permissionButton",
  76. roles: ["admin", "common"],
  77. auths: [
  78. "permission:btn:add",
  79. "permission:btn:edit",
  80. "permission:btn:delete"
  81. ]
  82. }
  83. }
  84. ]
  85. };
  86. const frameRouter = {
  87. path: "/iframe",
  88. meta: {
  89. icon: "ep:monitor",
  90. title: "menus.hsExternalPage",
  91. rank: frame
  92. },
  93. children: [
  94. {
  95. path: "/iframe/external",
  96. meta: {
  97. title: "menus.hsExternalDoc"
  98. },
  99. children: [
  100. {
  101. path: "/external",
  102. name: "https://yiming_chang.gitee.io/pure-admin-doc",
  103. meta: {
  104. title: "menus.externalLink",
  105. roles: ["admin", "common"]
  106. }
  107. },
  108. {
  109. path: "/pureutilsLink",
  110. name: "https://pure-admin-utils.netlify.app/",
  111. meta: {
  112. title: "menus.pureutilsLink",
  113. roles: ["admin", "common"]
  114. }
  115. }
  116. ]
  117. },
  118. {
  119. path: "/iframe/embedded",
  120. meta: {
  121. title: "menus.hsEmbeddedDoc"
  122. },
  123. children: [
  124. {
  125. path: "/iframe/ep",
  126. name: "FrameEp",
  127. meta: {
  128. title: "menus.hsEpDocument",
  129. frameSrc: "https://element-plus.org/zh-CN/",
  130. keepAlive: true,
  131. roles: ["admin", "common"]
  132. }
  133. },
  134. {
  135. path: "/iframe/tailwindcss",
  136. name: "FrameTailwindcss",
  137. meta: {
  138. title: "menus.hsTailwindcssDocument",
  139. frameSrc: "https://tailwindcss.com/docs/installation",
  140. keepAlive: true,
  141. roles: ["admin", "common"]
  142. }
  143. },
  144. {
  145. path: "/iframe/vue3",
  146. name: "FrameVue",
  147. meta: {
  148. title: "menus.hsVueDocument",
  149. frameSrc: "https://cn.vuejs.org/",
  150. keepAlive: true,
  151. roles: ["admin", "common"]
  152. }
  153. },
  154. {
  155. path: "/iframe/vite",
  156. name: "FrameVite",
  157. meta: {
  158. title: "menus.hsViteDocument",
  159. frameSrc: "https://cn.vitejs.dev/",
  160. keepAlive: true,
  161. roles: ["admin", "common"]
  162. }
  163. },
  164. {
  165. path: "/iframe/pinia",
  166. name: "FramePinia",
  167. meta: {
  168. title: "menus.hsPiniaDocument",
  169. frameSrc: "https://pinia.vuejs.org/zh/index.html",
  170. keepAlive: true,
  171. roles: ["admin", "common"]
  172. }
  173. },
  174. {
  175. path: "/iframe/vue-router",
  176. name: "FrameRouter",
  177. meta: {
  178. title: "menus.hsRouterDocument",
  179. frameSrc: "https://router.vuejs.org/zh/",
  180. keepAlive: true,
  181. roles: ["admin", "common"]
  182. }
  183. }
  184. ]
  185. }
  186. ]
  187. };
  188. const tabsRouter = {
  189. path: "/tabs",
  190. meta: {
  191. icon: "ri:bookmark-2-line",
  192. title: "menus.hstabs",
  193. rank: tabs
  194. },
  195. children: [
  196. {
  197. path: "/tabs/index",
  198. name: "Tabs",
  199. meta: {
  200. title: "menus.hstabs",
  201. roles: ["admin", "common"]
  202. }
  203. },
  204. // query 传参模式
  205. {
  206. path: "/tabs/query-detail",
  207. name: "TabQueryDetail",
  208. meta: {
  209. // 不在menu菜单中显示
  210. showLink: false,
  211. activePath: "/tabs/index",
  212. roles: ["admin", "common"]
  213. }
  214. },
  215. // params 传参模式
  216. {
  217. path: "/tabs/params-detail/:id",
  218. component: "params-detail",
  219. name: "TabParamsDetail",
  220. meta: {
  221. // 不在menu菜单中显示
  222. showLink: false,
  223. activePath: "/tabs/index",
  224. roles: ["admin", "common"]
  225. }
  226. }
  227. ]
  228. };
  229. export default defineFakeRoute([
  230. {
  231. url: "/get-async-routes",
  232. method: "get",
  233. response: () => {
  234. return {
  235. success: true,
  236. data: [systemRouter, permissionRouter, frameRouter, tabsRouter]
  237. };
  238. }
  239. }
  240. ]);