index.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <template>
  2. <view class="balance">
  3. <view class="header-box">
  4. <view class="balance-header">
  5. <view class="header-top">
  6. <view class="price-left">
  7. <text>{{ financeInfo.withdrawableMoney || 0 }}</text>
  8. <text>可提现</text>
  9. </view>
  10. <view
  11. class="price-right"
  12. @click="navigateTo(`/pages_module/withdrawal/index`)"
  13. >提现</view
  14. >
  15. </view>
  16. <view class="header-bottom">
  17. <view class="text-box">
  18. <text>已提现</text>
  19. <text>{{ financeInfo.alreadyArrived || 0 }}</text>
  20. </view>
  21. <view class="text-box">
  22. <text>累计营业额</text>
  23. <text>{{ financeInfo.turnover || 0 }}</text>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="header-tool">
  28. <view class="tool-item" @click="goShow(1)">去充值</view>
  29. <view class="tool-item" @click="goShow(0)">去转赠</view>
  30. </view>
  31. </view>
  32. <view class="balance-container">
  33. <view class="text-tab">
  34. <view
  35. v-for="(item, index) in tabList"
  36. :key="item"
  37. :class="idx == index ? 'active' : ''"
  38. @click="changeTab(index)"
  39. >{{ item }}</view
  40. >
  41. </view>
  42. <view v-show="idx == 0">
  43. <template v-if="recordList.length > 0">
  44. <view class="record-list">
  45. <view class="record-item" v-for="item in recordList" :key="item">
  46. <view class="item-left">
  47. <text>提现支出</text>
  48. <text>{{ item.time }}</text>
  49. </view>
  50. <template v-if="item.state == 0">
  51. <view class="item-right">+{{ item.income }}</view>
  52. </template>
  53. <template v-else>
  54. <view class="item-right">-{{ item.expenditure }}</view>
  55. </template>
  56. </view>
  57. <view class="no-more">没有更多啦</view>
  58. </view>
  59. </template>
  60. <template v-else>
  61. <view class="empty">
  62. <image class="" src="@/static/image/order/empty.png" />
  63. <text>暂无提现记录</text>
  64. </view>
  65. </template>
  66. </view>
  67. <view v-show="idx == 1">
  68. <template v-if="withdrawalList.length > 0">
  69. <view class="record-list">
  70. <view
  71. class="record-item"
  72. v-for="item in withdrawalList"
  73. :key="item"
  74. >
  75. <view class="item-left">
  76. <text v-if="item.state == 1">已处理</text>
  77. <text v-else-if="item.state == 0">待处理</text>
  78. <text v-else-if="item.state == 2">通过</text>
  79. <text v-else-if="item.state == 3">拒绝</text>
  80. <text v-else-if="item.state == 4">待确认</text>
  81. <text>{{ item.applyTime }}</text>
  82. </view>
  83. <view class="item-right">-{{ item.withdrawalMoney }}</view>
  84. <!-- <template v-if="item.state == 0">
  85. <view class="item-right">+{{ item.income }}</view>
  86. </template>
  87. <template v-else>
  88. <view class="item-right">-{{ item.withdrawalMoney }}</view>
  89. </template> -->
  90. </view>
  91. <view class="no-more">没有更多啦</view>
  92. </view>
  93. </template>
  94. <template v-else>
  95. <view class="empty">
  96. <image class="" src="@/static/image/order/empty.png" />
  97. <text>暂无提现记录</text>
  98. </view>
  99. </template>
  100. </view>
  101. </view>
  102. <tui-bottom-popup
  103. :zIndex="1000"
  104. backgroundColor="#FFFFFF"
  105. :show="showPopup"
  106. @close="clonePopup"
  107. >
  108. <template v-if="isShowComponent == 0">
  109. <transferPopup
  110. :voucherWithdrawalIn="financeInfo.voucherWithdrawalIn"
  111. @cancel="clonePopup"
  112. />
  113. </template>
  114. <template v-else>
  115. <rechargePopup @cancel="clonePopup" />
  116. </template>
  117. </tui-bottom-popup>
  118. </view>
  119. </template>
  120. <script>
  121. import { getFinanceCount, getWithdrawal } from "@/config/index.js";
  122. import transferPopup from "./components/transferPopup/index.vue";
  123. import rechargePopup from "./components/rechargePopup/index.vue";
  124. export default {
  125. onLoad(option) {
  126. // 获取流水接口
  127. this.getFinance();
  128. // 获取提现记录
  129. this.getWithList();
  130. },
  131. components: {
  132. transferPopup,
  133. rechargePopup,
  134. },
  135. data() {
  136. return {
  137. idx: 0,
  138. tabList: ["收支明细", "提现记录"],
  139. // 提现记录的请求参数
  140. queryData: {
  141. page: 1,
  142. pageSize: 10,
  143. paymentMode: 3,
  144. },
  145. // 提现记录的请求参数
  146. withdeQuery: {
  147. page: 1,
  148. pageSize: 10,
  149. withdrawalType: 3,
  150. },
  151. // 提现记录列表
  152. withdrawalList: [],
  153. // 流水信息
  154. financeInfo: {},
  155. // 收支明细列表
  156. recordList: [],
  157. // 控制 转赠 弹框
  158. showPopup: false,
  159. // 控制显示组件
  160. isShowComponent: 1,
  161. };
  162. },
  163. methods: {
  164. // 获取流水
  165. async getFinance() {
  166. this.$loading.show("加载中");
  167. try {
  168. let res = await getFinanceCount(this.queryData);
  169. this.financeInfo = res.data;
  170. // 对于数据进行处理 如果有支出的话就加上这一个支出
  171. let list = res.data.finances.reduce((prev, item, index) => {
  172. prev.push({ ...item, state: 0 });
  173. if (item.expenditure > 0) {
  174. prev.push({ ...item });
  175. }
  176. return prev;
  177. }, []);
  178. this.recordList = list;
  179. } finally {
  180. this.$loading.hide();
  181. }
  182. },
  183. // 获取体现记录
  184. async getWithList() {
  185. let res = await getWithdrawal(this.withdeQuery);
  186. this.withdrawalList = res.data;
  187. console.log(res);
  188. },
  189. // 获取体现记录
  190. changeTab(idx) {
  191. this.idx = idx;
  192. },
  193. // 关闭转赠弹框
  194. clonePopup() {
  195. this.showPopup = false;
  196. },
  197. goShow(val) {
  198. this.isShowComponent = val;
  199. this.showPopup = true;
  200. },
  201. },
  202. };
  203. </script>
  204. <style lang="scss" scoped>
  205. @import "./index.scss";
  206. </style>