asyncRoutes.ts 4.9 KB

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