index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <template>
  2. <view class="balance">
  3. <view class="balance-header">
  4. <view class="header-top">
  5. <view class="price-left">
  6. <text>{{ financeInfo.beeWithdrawal || 0 }}</text>
  7. <text>可提现</text>
  8. </view>
  9. <view class="price-right" @click="navigateTo(`/pages_module/withdrawal/index`)">提现</view>
  10. </view>
  11. <view class="header-bottom">
  12. <view class="text-box">
  13. <text>提现中</text>
  14. <text>{{ financeInfo.withdrawalIn }}</text>
  15. </view>
  16. <view class="text-box">
  17. <text>已提现</text>
  18. <text>{{ financeInfo.withdrawn }}</text>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="balance-container">
  23. <view class="text-tab">
  24. <view
  25. v-for="(item, index) in tabList"
  26. :key="item"
  27. :class="idx == index ? 'active' : ''"
  28. @click="changeTab(index)"
  29. >{{ item }}</view
  30. >
  31. </view>
  32. <view v-show="idx == 0">
  33. <template v-if="recordList.length > 0">
  34. <view class="record-list">
  35. <view class="record-item" v-for="item in recordList" :key="item">
  36. <view class="item-left">
  37. <text>提现支出</text>
  38. <text>{{ item.time }}</text>
  39. </view>
  40. <template v-if="item.state == 0">
  41. <view class="item-right">+{{ item.income }}</view>
  42. </template>
  43. <template v-else>
  44. <view class="item-right">-{{ item.expenditure }}</view>
  45. </template>
  46. </view>
  47. <view class="no-more">没有更多啦</view>
  48. </view>
  49. </template>
  50. <template v-else>
  51. <view class="empty">
  52. <image class="" src="@/static/image/order/empty.png" />
  53. <text>暂无提现记录</text>
  54. </view>
  55. </template>
  56. </view>
  57. <view v-show="idx == 1">
  58. <template v-if="withdrawalList.length > 0">
  59. <view class="record-list">
  60. <view class="record-item" v-for="item in withdrawalList" :key="item">
  61. <view class="item-left">
  62. <text>提现支出</text>
  63. <text>{{ item.time }}</text>
  64. </view>
  65. <template v-if="item.state == 0">
  66. <view class="item-right">+{{ item.income }}</view>
  67. </template>
  68. <template v-else>
  69. <view class="item-right">-{{ item.expenditure }}</view>
  70. </template>
  71. </view>
  72. <view class="no-more">没有更多啦</view>
  73. </view>
  74. </template>
  75. <template v-else>
  76. <view class="empty">
  77. <image class="" src="@/static/image/order/empty.png" />
  78. <text>暂无提现记录</text>
  79. </view>
  80. </template>
  81. </view>
  82. </view>
  83. </view>
  84. </template>
  85. <script>
  86. import { getFinanceCount,getWithdrawal } from "@/config/index.js";
  87. export default {
  88. onLoad(option) {
  89. // 获取流水接口
  90. this.getFinance();
  91. // 获取提现记录
  92. this.getWithList();
  93. },
  94. data() {
  95. return {
  96. idx: 0,
  97. tabList: ["收支明细", "提现记录"],
  98. queryData: {
  99. condition: "1",
  100. time: "",
  101. paymentMode: 2,
  102. },
  103. // 提现记录的请求参数
  104. withdeQuery:{
  105. page: 1,
  106. pageSize: 10,
  107. withdrawalType:4
  108. },
  109. // 提现记录列表
  110. withdrawalList: [],
  111. // 流水信息
  112. financeInfo: {},
  113. // 收支明细列表
  114. recordList: [],
  115. };
  116. },
  117. methods: {
  118. // 获取流水
  119. async getFinance() {
  120. let res = await getFinanceCount(this.queryData);
  121. this.financeInfo = res.data;
  122. // 对于数据进行处理 如果有支出的话就加上这一个支出
  123. let list = res.data.finances.reduce((prev, item, index) => {
  124. prev.push({ ...item, state: 0 });
  125. if (item.expenditure > 0) {
  126. prev.push({ ...item });
  127. }
  128. return prev;
  129. }, []);
  130. this.recordList = list;
  131. },
  132. // 获取体现记录
  133. async getWithList() {
  134. let res = await getWithdrawal(this.withdeQuery);
  135. this.withdrawalList = res.data;
  136. console.log(res);
  137. },
  138. // 获取体现记录
  139. changeTab(idx) {
  140. this.idx = idx;
  141. },
  142. },
  143. };
  144. </script>
  145. <style lang="scss" scoped>
  146. @import "./index.scss";
  147. </style>