index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <view class="balance">
  3. <view class="balance-header">
  4. <view class="header-top">
  5. <view class="price-left">
  6. <text>{{ financeInfo.rechargeWithdrawalIn || 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.rechargeFreeze || '0' }}</text>
  15. </view>
  16. <view class="text-box">
  17. <text>余额赠送代金券</text>
  18. <text>{{ financeInfo.presenterRechargeVoucher || '0' }}</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>{{ item.state == 0?'实体商品收入':'提现支出' }}</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: 4,
  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. this.$loading.show("加载中");
  121. try {
  122. let res = await getFinanceCount(this.queryData);
  123. this.financeInfo = res.data;
  124. // 对于数据进行处理 如果有支出的话就加上这一个支出
  125. let list = res.data.finances.reduce((prev, item, index) => {
  126. prev.push({ ...item, state: 0 });
  127. if (item.expenditure > 0) {
  128. prev.push({ ...item });
  129. }
  130. return prev;
  131. }, []);
  132. this.recordList = list;
  133. } finally {
  134. this.$loading.hide();
  135. }
  136. },
  137. // 获取体现记录
  138. async getWithList() {
  139. let res = await getWithdrawal(this.withdeQuery);
  140. this.withdrawalList = res.data;
  141. console.log(res);
  142. },
  143. // 获取体现记录
  144. changeTab(idx) {
  145. this.idx = idx;
  146. },
  147. },
  148. };
  149. </script>
  150. <style lang="scss" scoped>
  151. @import "./index.scss";
  152. </style>