Fund.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. // 资金管理
  2. const FinancialReconciliation = () => import('@/view/fund/financial-reconciliation.vue'); // 财务对账
  3. const profitSharingRecord = () => import('@/view/fund/profit-sharing-record.vue'); // 分润记录
  4. const balanceRecord = () => import('@/view/fund/balance-record.vue'); // 团队奖励
  5. const hqRecord = () => import('@/view/fund/hq-record.vue'); // 团队奖励
  6. const hzRecord = () => import('@/view/fund/hz-record.vue'); // 团队奖励
  7. const balanceExamine = () => import('@/view/fund/balance-examine.vue'); // 团队奖励
  8. const messagePublish = () => import('@/view/fund/message-publish.vue'); // 团队奖励
  9. const messageDetail = () => import('@/view/fund/message-detail.vue'); // 团队奖励
  10. const payRecord = () => import('@/view/fund/pay-record.vue'); // 团队奖励
  11. const addPay = () => import('@/view/fund/add-pay.vue'); // 团队奖励
  12. const withdraw = () => import('@/view/fund/withdraw.vue'); // 团队奖励
  13. const team = () => import('@/view/fund/team.vue'); // 团队奖励
  14. const wxCharge = () => import('@/view/fund/wx-charge.vue'); // 团队奖励
  15. const goldList = () => import('@/view/fund/gold-list.vue'); // 团队奖励
  16. const balanceList = () => import('@/view/fund/balance-list.vue'); // 团队奖励
  17. const integralList = () => import('@/view/fund/integral-list.vue'); // 团队奖励
  18. const scoreRecord = () => import('@/view/fund/score-record.vue'); // 团队奖励
  19. const teamScoreRecord = () => import('@/view/fund/team-score-record.vue'); // 团队奖励
  20. const beanWithdraw = () => import('@/view/fund/bean-withdraw.vue'); // 团队奖励
  21. const rankList = () => import('@/view/fund/rank-list.vue'); // 团队奖励
  22. // const team = () => import('@/view/fund/team.vue'); // 团队奖励
  23. export default [{
  24. path: '/financial-reconciliation',
  25. name: 'FinancialReconciliation',
  26. component: FinancialReconciliation
  27. },
  28. {
  29. path: '/profit-sharing-record',
  30. name: 'profitSharingRecord',
  31. component: profitSharingRecord
  32. },
  33. {
  34. path: '/balance-record',
  35. name: 'balanceRecord',
  36. component: balanceRecord
  37. }, {
  38. path: '/hq-record',
  39. name: 'hqRecord',
  40. component: hqRecord
  41. }, {
  42. path: '/hz-record',
  43. name: 'hzRecord',
  44. component: hzRecord
  45. },
  46. {
  47. path: '/balance-examine',
  48. name: 'balanceExamine',
  49. component: balanceExamine
  50. },
  51. {
  52. path: '/message-publish',
  53. name: 'messagePublish',
  54. component: messagePublish
  55. },
  56. {
  57. path: '/message-detail',
  58. name: 'messageDetail',
  59. component: messageDetail
  60. },
  61. {
  62. path: '/pay-record',
  63. name: 'payRecord',
  64. component: payRecord
  65. },
  66. {
  67. path: '/add-pay',
  68. name: 'addPay',
  69. component: addPay
  70. },
  71. {
  72. path: '/withdraw',
  73. name: 'withdraw',
  74. component: withdraw
  75. },
  76. {
  77. path: '/team',
  78. name: 'team',
  79. component: team
  80. },
  81. {
  82. path: '/wx-charge',
  83. name: 'wxCharge',
  84. component: wxCharge
  85. },
  86. {
  87. path: '/gold-list',
  88. name: 'goldList',
  89. component: goldList
  90. },
  91. {
  92. path: '/balance-list',
  93. name: 'balanceList',
  94. component: balanceList
  95. },
  96. {
  97. path: '/integral-list',
  98. name: 'integralList',
  99. component: integralList
  100. },
  101. {
  102. path: '/score-record',
  103. name: 'scoreRecord',
  104. component: scoreRecord
  105. },
  106. {
  107. path: '/team-score-record',
  108. name: 'teamScoreRecord',
  109. component: teamScoreRecord
  110. },
  111. {
  112. path: '/bean-withdraw',
  113. name: 'beanWithdraw',
  114. component: beanWithdraw
  115. },
  116. {
  117. path: '/rank-list',
  118. name: 'rankList',
  119. component: rankList
  120. }
  121. ];