index.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. export default [
  2. {
  3. label: "个人中心",
  4. path: "/my/info",
  5. component: () => import("./info")
  6. },
  7. {
  8. moduleName: "sys-user",
  9. label: "用户列表",
  10. path: "/sys/user",
  11. icon: "icon-user",
  12. component: () => import("./user")
  13. },
  14. {
  15. moduleName: "sys-menu",
  16. label: "菜单列表",
  17. path: "/sys/menu",
  18. icon: "icon-menu",
  19. component: () => import("./menu")
  20. },
  21. {
  22. moduleName: "sys-role",
  23. label: "角色列表",
  24. path: "/sys/role",
  25. icon: "icon-common",
  26. component: () => import("./role")
  27. },
  28. {
  29. moduleName: "sys.perf",
  30. label: "状态监控",
  31. path: "/sys/perf",
  32. icon: "icon-warn",
  33. component: () => import("./perf")
  34. },
  35. {
  36. moduleName: "sys.param",
  37. label: "参数列表",
  38. path: "/sys/param",
  39. icon: "icon-menu",
  40. component: () => import("./param")
  41. },
  42. {
  43. moduleName: "sys.log",
  44. label: "请求日志",
  45. path: "/sys/log",
  46. icon: "icon-log",
  47. component: () => import("./log")
  48. },
  49. {
  50. moduleName: "plugin",
  51. label: "插件列表",
  52. path: "/plugin",
  53. icon: "icon-menu",
  54. component: () => import("./plugin")
  55. }
  56. ];