routerConfig.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. export const routerConfig = [
  2. {
  3. path: '/user',
  4. component: '../layouts/UserLayout',
  5. routes: [
  6. {
  7. name: 'login',
  8. path: '/user/login',
  9. component: './user/login',
  10. },
  11. ],
  12. },
  13. { path: '/', redirect: '/welcome' },
  14. {
  15. path: '/',
  16. component: '../layouts/BasicLayout',
  17. routes: [
  18. {
  19. name: '欢迎',
  20. path: '/welcome',
  21. icon: 'smile',
  22. component: './Welcome',
  23. },
  24. {
  25. name: '数据统计',
  26. path: '/statistics',
  27. icon: 'dashboard',
  28. hideInMenu: true,
  29. routes: [
  30. {
  31. component: './404',
  32. },
  33. ]
  34. },
  35. {
  36. name: '我的公会',
  37. path: '/myfamily',
  38. icon: 'dashboard',
  39. component: './Family/FamilyDetails'
  40. // routes: [
  41. // { component: './Family/FamilyDetails', }
  42. // ]
  43. },
  44. {
  45. name: '主播详情',
  46. path: '/myfamily/liveinfo',
  47. component: './Family/FamilyLiveInfo',
  48. hideInMenu: true
  49. },
  50. {
  51. name: '主播管理',
  52. path: '/anchors',
  53. icon: 'flag',
  54. routes: [
  55. {
  56. name: '主播列表',
  57. path: '/anchors/list',
  58. component: './Anchors/AnchorList'
  59. },
  60. {
  61. name: '主播审核列表',
  62. path: '/anchors/auditlist',
  63. component: './Anchors/AnchorAuditList'
  64. },
  65. {
  66. name: '主播详情',
  67. path: '/anchors/list/details',
  68. component: './Anchors/AnchorDetail',
  69. hideInMenu: true
  70. },
  71. ],
  72. },
  73. {
  74. name: '管理员管理',
  75. path: '/admin',
  76. icon: 'tool',
  77. routes: [
  78. {
  79. name: '管理员列表',
  80. path: '/admin/list',
  81. component: './Admin/AdminList',
  82. }
  83. ],
  84. },
  85. {
  86. name: '财务管理',
  87. path: '/money',
  88. icon: 'dollar',
  89. routes: [
  90. {
  91. name: '账户管理',
  92. path: '/money/withdraw',
  93. component: './Money/AccountList',
  94. },
  95. {
  96. name: '提现管理',
  97. path: '/money/withdraw/record',
  98. component: './Money/WithdrawRecord',
  99. }
  100. ],
  101. },
  102. {
  103. name: '活动管理',
  104. path: '/activity',
  105. icon: 'flag',
  106. hideInMenu: true,
  107. routes: [
  108. {
  109. component: './404',
  110. },
  111. ],
  112. },
  113. {
  114. name: '系统管理',
  115. path: '/system',
  116. icon: 'setting',
  117. hideInMenu: true,
  118. routes: [
  119. {
  120. component: './404',
  121. },
  122. ],
  123. },
  124. {
  125. name: '财务管理',
  126. path: '/finance',
  127. icon: 'dollar',
  128. hideInMenu: true,
  129. routes: [
  130. {
  131. component: './404',
  132. },
  133. ],
  134. },
  135. ],
  136. },
  137. {
  138. component: './404',
  139. },
  140. ];