menu.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. const menuData =
  2. [
  3. {
  4. 'id': 1,
  5. 'path': '/console',
  6. 'redirect': 'noredirect',
  7. 'component': 'Layout',
  8. 'name': 'console',
  9. 'title': '系统管理',
  10. 'icon': 'form',
  11. 'parentId': -1,
  12. 'children': [
  13. {
  14. 'children': [],
  15. 'id': 7,
  16. 'name': 'user',
  17. 'component': 'console/user/index',
  18. 'title': '用户管理',
  19. 'icon': 'user',
  20. 'parentId': 1,
  21. 'path': 'user'
  22. },
  23. {
  24. 'children': [],
  25. 'name': 'menu',
  26. 'component': 'console/menu/index',
  27. 'id': 8,
  28. 'title': '菜单管理',
  29. 'icon': 'table',
  30. 'parentId': 1,
  31. 'path': 'menu'
  32. },
  33. {
  34. 'children': [],
  35. 'name': 'role',
  36. 'component': 'console/role/index',
  37. 'id': 9,
  38. 'title': '角色管理',
  39. 'icon': 'table',
  40. 'parentId': 1,
  41. 'path': 'role'
  42. },
  43. {
  44. 'children': [],
  45. 'name': 'dict',
  46. 'component': 'console/dict/index',
  47. 'id': 10,
  48. 'title': '字典管理',
  49. 'icon': 'table',
  50. 'parentId': 1,
  51. 'path': 'dict'
  52. },
  53. {
  54. 'children': [],
  55. 'name': 'dept',
  56. 'component': 'console/dept/index',
  57. 'id': 11,
  58. 'title': '部门管理',
  59. 'icon': 'table',
  60. 'parentId': 1,
  61. 'path': 'dept'
  62. }
  63. ]
  64. },
  65. {
  66. 'id': 22,
  67. 'name': 'myiframe',
  68. 'component': 'Iframe',
  69. 'redirect': 'noredirect',
  70. 'title': '第三方系统',
  71. 'icon': 'link',
  72. 'path': '/myiframe',
  73. 'parentId': -1,
  74. 'children': [
  75. {
  76. 'id': 23,
  77. 'children': [],
  78. 'name': 'wechat',
  79. 'component': 'Iframe',
  80. 'title': '微信',
  81. 'icon': 'wechat',
  82. 'parentId': 22,
  83. 'path': 'wechatUrl?src=https://pc.weixin.qq.com/&name=微信'
  84. },
  85. {
  86. 'id': 24,
  87. 'children': [],
  88. 'name': 'qq',
  89. 'component': 'Iframe',
  90. 'title': '腾讯QQ',
  91. 'icon': 'qq',
  92. 'parentId': 22,
  93. 'path': 'qqUrl?src=https://im.qq.com/index.shtml&name=腾讯QQ'
  94. }
  95. ]
  96. }
  97. ]
  98. export default [
  99. {
  100. url: '/authdata/rolemenus',
  101. type: 'get',
  102. response: _ => {
  103. return {
  104. code: 200,
  105. data: menuData
  106. // console.log(menuData)
  107. }
  108. }
  109. }
  110. ]