index.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <template>
  2. <view class="balance">
  3. <view class="balance-header">
  4. <view class="header-top">
  5. <view class="price-left">
  6. <text>{{ financeInfo.withdrawableMoney || '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.frozenMoney || '0' }}</text>
  15. </view>
  16. <view class="text-box">
  17. <text>累计营业额(元)</text>
  18. <text>{{ financeInfo.turnover || '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
  61. class="record-item"
  62. v-for="item in withdrawalList"
  63. :key="item"
  64. >
  65. <view class="item-left">
  66. <text>提现支出</text>
  67. <text>{{ item.applyTime }}</text>
  68. </view>
  69. <template v-if="item.state == 0">
  70. <view class="item-right">+{{ item.income }}</view>
  71. </template>
  72. <template v-else>
  73. <view class="item-right">-{{ item.withdrawalMoney || 0 }}</view>
  74. </template>
  75. </view>
  76. <view class="no-more">没有更多啦</view>
  77. </view>
  78. </template>
  79. <template v-else>
  80. <view class="empty">
  81. <image class="" src="@/static/image/order/empty.png" />
  82. <text>暂无提现记录</text>
  83. </view>
  84. </template>
  85. </view>
  86. </view>
  87. </view>
  88. </template>
  89. <script>
  90. import { getFinanceCount, getWithdrawal } from "@/config/index.js";
  91. export default {
  92. onLoad(option) {
  93. // 获取流水接口
  94. this.getFinance();
  95. // 获取提现记录
  96. this.getWithList();
  97. },
  98. data() {
  99. return {
  100. idx: 0,
  101. tabList: ["收支明细", "提现记录"],
  102. queryData: {
  103. condition: "1",
  104. time: "",
  105. paymentMode: 5,
  106. },
  107. // 提现记录的请求参数
  108. withdeQuery: {
  109. page: 1,
  110. pageSize: 10,
  111. withdrawalType: 5,
  112. },
  113. // 提现记录列表
  114. withdrawalList: [],
  115. // 流水信息
  116. financeInfo: {},
  117. // 收支明细列表
  118. recordList: [],
  119. };
  120. },
  121. methods: {
  122. // 获取流水
  123. async getFinance() {
  124. this.$loading.show("加载中");
  125. try {
  126. let res = await getFinanceCount(this.queryData);
  127. this.financeInfo = res.data;
  128. // 对于数据进行处理 如果有支出的话就加上这一个支出
  129. let list = res.data.finances.reduce((prev, item, index) => {
  130. prev.push({ ...item, state: 0 });
  131. if (item.expenditure > 0) {
  132. prev.push({ ...item });
  133. }
  134. return prev;
  135. }, []);
  136. this.recordList = list;
  137. } finally {
  138. this.$loading.hide();
  139. }
  140. },
  141. // 获取体现记录
  142. async getWithList() {
  143. let res = await getWithdrawal(this.withdeQuery);
  144. this.withdrawalList = res.data;
  145. console.log(res.data);
  146. },
  147. // 获取体现记录
  148. changeTab(idx) {
  149. this.idx = idx;
  150. },
  151. },
  152. };
  153. </script>
  154. <style lang="scss" scoped>
  155. @import "./index.scss";
  156. </style>