敢为人鲜小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
2.4 KiB

1 month ago
  1. // 资产明细的mock数据
  2. export const assetsData = {
  3. // 收入明细
  4. incomeList: [
  5. {
  6. id: 1,
  7. type: '充值',
  8. amount: 200,
  9. time: '2020-12-29 12:54:54'
  10. },
  11. {
  12. id: 2,
  13. type: '充值',
  14. amount: 200,
  15. time: '2020-12-29 12:54:54'
  16. },
  17. {
  18. id: 3,
  19. type: '充值',
  20. amount: 200,
  21. time: '2020-12-29 12:54:54'
  22. },
  23. {
  24. id: 4,
  25. type: '充值',
  26. amount: 200,
  27. time: '2020-12-29 12:54:54'
  28. },
  29. {
  30. id: 5,
  31. type: '充值',
  32. amount: 200,
  33. time: '2020-12-29 12:54:54'
  34. }
  35. ],
  36. // 支出明细
  37. expenseList: [
  38. {
  39. id: 6,
  40. type: '提现',
  41. amount: 100,
  42. time: '2020-12-25 14:30:22'
  43. },
  44. {
  45. id: 7,
  46. type: '提现',
  47. amount: 150,
  48. time: '2020-12-20 09:15:36'
  49. },
  50. {
  51. id: 8,
  52. type: '点餐',
  53. amount: 50,
  54. time: '2020-12-15 18:22:10'
  55. }
  56. ]
  57. }
  58. // 这是团长用的静态资产明细
  59. export const assetsDataForHead = {
  60. // 收入明细
  61. incomeList: [
  62. {
  63. id: 1,
  64. type: '佣金',
  65. amount: 200,
  66. time: '2020-12-29 12:54:54'
  67. },
  68. {
  69. id: 2,
  70. type: '佣金',
  71. amount: 200,
  72. time: '2020-12-29 12:54:54'
  73. },
  74. {
  75. id: 3,
  76. type: '佣金',
  77. amount: 200,
  78. time: '2020-12-29 12:54:54'
  79. },
  80. {
  81. id: 4,
  82. type: '佣金',
  83. amount: 200,
  84. time: '2020-12-29 12:54:54'
  85. },
  86. {
  87. id: 5,
  88. type: '佣金',
  89. amount: 200,
  90. time: '2020-12-29 12:54:54'
  91. }
  92. ],
  93. // 支出明细
  94. expenseList: [
  95. {
  96. id: 6,
  97. type: '提现',
  98. amount: 100,
  99. time: '2020-12-25 14:30:22'
  100. },
  101. {
  102. id: 7,
  103. type: '提现',
  104. amount: 150,
  105. time: '2020-12-20 09:15:36'
  106. },
  107. {
  108. id: 8,
  109. type: '点餐',
  110. amount: 50,
  111. time: '2020-12-15 18:22:10'
  112. }
  113. ]
  114. }