asyncRoutes.ts 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. // 模拟后端动态生成路由
  2. import { defineFakeRoute } from "vite-plugin-fake-server/client";
  3. import { system, monitor, permission, frame, tabs } from "@/router/enums";
  4. /**
  5. * roles:页面级别权限,这里模拟二种 "admin"、"common"
  6. * admin:管理员角色
  7. * common:普通角色
  8. */
  9. const systemManagementRouter = {
  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 systemMonitorRouter = {
  56. path: "/monitor",
  57. meta: {
  58. icon: "ep:monitor",
  59. title: "menus.hssysMonitor",
  60. rank: monitor
  61. },
  62. children: [
  63. {
  64. path: "/monitor/online-user",
  65. component: "monitor/online/index",
  66. name: "OnlineUser",
  67. meta: {
  68. icon: "ri:user-voice-line",
  69. title: "menus.hsOnlineUser",
  70. roles: ["admin"]
  71. }
  72. },
  73. {
  74. path: "/monitor/login-logs",
  75. component: "monitor/logs/login/index",
  76. name: "LoginLog",
  77. meta: {
  78. icon: "ri:window-line",
  79. title: "menus.hsLoginLog",
  80. roles: ["admin"]
  81. }
  82. },
  83. {
  84. path: "/monitor/operation-logs",
  85. component: "monitor/logs/operation",
  86. name: "OperationLog",
  87. meta: {
  88. icon: "ri:history-fill",
  89. title: "menus.hsOperationLog",
  90. roles: ["admin"]
  91. }
  92. },
  93. {
  94. path: "/monitor/system-logs",
  95. component: "monitor/logs/system",
  96. name: "SystemLog",
  97. meta: {
  98. icon: "ri:file-search-line",
  99. title: "menus.hsSystemLog",
  100. roles: ["admin"]
  101. }
  102. }
  103. ]
  104. };
  105. const permissionRouter = {
  106. path: "/permission",
  107. meta: {
  108. title: "menus.permission",
  109. icon: "ep:lollipop",
  110. rank: permission
  111. },
  112. children: [
  113. {
  114. path: "/permission/page/index",
  115. name: "PermissionPage",
  116. meta: {
  117. title: "menus.permissionPage",
  118. roles: ["admin", "common"]
  119. }
  120. },
  121. {
  122. path: "/permission/button/index",
  123. name: "PermissionButton",
  124. meta: {
  125. title: "menus.permissionButton",
  126. roles: ["admin", "common"],
  127. auths: [
  128. "permission:btn:add",
  129. "permission:btn:edit",
  130. "permission:btn:delete"
  131. ]
  132. }
  133. }
  134. ]
  135. };
  136. const frameRouter = {
  137. path: "/iframe",
  138. meta: {
  139. icon: "ri:links-fill",
  140. title: "menus.hsExternalPage",
  141. rank: frame
  142. },
  143. children: [
  144. {
  145. path: "/iframe/external",
  146. meta: {
  147. title: "menus.hsExternalDoc"
  148. },
  149. children: [
  150. {
  151. path: "/external",
  152. name: "https://yiming_chang.gitee.io/pure-admin-doc",
  153. meta: {
  154. title: "menus.externalLink",
  155. roles: ["admin", "common"]
  156. }
  157. },
  158. {
  159. path: "/pureutilsLink",
  160. name: "https://pure-admin-utils.netlify.app/",
  161. meta: {
  162. title: "menus.pureutilsLink",
  163. roles: ["admin", "common"]
  164. }
  165. }
  166. ]
  167. },
  168. {
  169. path: "/iframe/embedded",
  170. meta: {
  171. title: "menus.hsEmbeddedDoc"
  172. },
  173. children: [
  174. {
  175. path: "/iframe/ep",
  176. name: "FrameEp",
  177. meta: {
  178. title: "menus.hsEpDocument",
  179. frameSrc: "https://element-plus.org/zh-CN/",
  180. keepAlive: true,
  181. roles: ["admin", "common"]
  182. }
  183. },
  184. {
  185. path: "/iframe/tailwindcss",
  186. name: "FrameTailwindcss",
  187. meta: {
  188. title: "menus.hsTailwindcssDocument",
  189. frameSrc: "https://tailwindcss.com/docs/installation",
  190. keepAlive: true,
  191. roles: ["admin", "common"]
  192. }
  193. },
  194. {
  195. path: "/iframe/vue3",
  196. name: "FrameVue",
  197. meta: {
  198. title: "menus.hsVueDocument",
  199. frameSrc: "https://cn.vuejs.org/",
  200. keepAlive: true,
  201. roles: ["admin", "common"]
  202. }
  203. },
  204. {
  205. path: "/iframe/vite",
  206. name: "FrameVite",
  207. meta: {
  208. title: "menus.hsViteDocument",
  209. frameSrc: "https://cn.vitejs.dev/",
  210. keepAlive: true,
  211. roles: ["admin", "common"]
  212. }
  213. },
  214. {
  215. path: "/iframe/pinia",
  216. name: "FramePinia",
  217. meta: {
  218. title: "menus.hsPiniaDocument",
  219. frameSrc: "https://pinia.vuejs.org/zh/index.html",
  220. keepAlive: true,
  221. roles: ["admin", "common"]
  222. }
  223. },
  224. {
  225. path: "/iframe/vue-router",
  226. name: "FrameRouter",
  227. meta: {
  228. title: "menus.hsRouterDocument",
  229. frameSrc: "https://router.vuejs.org/zh/",
  230. keepAlive: true,
  231. roles: ["admin", "common"]
  232. }
  233. }
  234. ]
  235. }
  236. ]
  237. };
  238. const tabsRouter = {
  239. path: "/tabs",
  240. meta: {
  241. icon: "ri:bookmark-2-line",
  242. title: "menus.hstabs",
  243. rank: tabs
  244. },
  245. children: [
  246. {
  247. path: "/tabs/index",
  248. name: "Tabs",
  249. meta: {
  250. title: "menus.hstabs",
  251. roles: ["admin", "common"]
  252. }
  253. },
  254. // query 传参模式
  255. {
  256. path: "/tabs/query-detail",
  257. name: "TabQueryDetail",
  258. meta: {
  259. // 不在menu菜单中显示
  260. showLink: false,
  261. activePath: "/tabs/index",
  262. roles: ["admin", "common"]
  263. }
  264. },
  265. // params 传参模式
  266. {
  267. path: "/tabs/params-detail/:id",
  268. component: "params-detail",
  269. name: "TabParamsDetail",
  270. meta: {
  271. // 不在menu菜单中显示
  272. showLink: false,
  273. activePath: "/tabs/index",
  274. roles: ["admin", "common"]
  275. }
  276. }
  277. ]
  278. };
  279. export default defineFakeRoute([
  280. {
  281. url: "/get-async-routes",
  282. method: "get",
  283. response: () => {
  284. return {
  285. success: true,
  286. data: [
  287. systemManagementRouter,
  288. systemMonitorRouter,
  289. permissionRouter,
  290. frameRouter,
  291. tabsRouter
  292. ]
  293. };
  294. }
  295. }
  296. ]);