withdrawal-details.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <!-- 提现明细 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="list">
  5. <view class="item" v-for="(item, index) in list" :key="index">
  6. <view class="item-top">
  7. <text class="name">{{item.desc}}</text>
  8. <text :class="'status '+ (item.status == 0 ? 'red' : 'blue')">{{item.status == 0 ? '被驳回' : '已到账'}}</text>
  9. </view>
  10. <view class="item-bottom">
  11. <text class="time">{{item.money}}</text>
  12. <text class="money">{{item.money}}</text>
  13. </view>
  14. <view class="msg" v-if="item.type == 1">
  15. 支付宝账号:{{item.card_no}}
  16. </view>
  17. <view class="msg" v-if="item.type == 2">
  18. 开户行:{{item.bank_name}}
  19. </view>
  20. <view class="msg" v-if="item.type == 2">
  21. 银行卡号:{{item.card_no}}
  22. </view>
  23. <view class="msg" v-if="item.type == 3">
  24. 微信账号:{{item.card_no}}
  25. </view>
  26. </view>
  27. <!-- <view class="item">
  28. <view class="item-top">
  29. <text class="name">提现到银行卡</text>
  30. <text :class="'status '+ (isAudit?'red':'blue')">{{isAudit ? '被驳回' : '已到账'}}</text>
  31. </view>
  32. <view class="item-bottom">
  33. <text class="time">2020-02-24 14:22:23</text>
  34. <text class="money">-12.98</text>
  35. </view>
  36. <view class="msg">
  37. 开户行:中国农业银行
  38. </view>
  39. <view class="msg">
  40. 银行卡号:9347328649237490
  41. </view>
  42. </view>
  43. <view class="item">
  44. <view class="item-top">
  45. <text class="name">提现到支付宝</text>
  46. <text :class="'status '+ (isAudit?'red':'blue')">{{isAudit ? '被驳回' : '已到账'}}</text>
  47. </view>
  48. <view class="item-bottom">
  49. <text class="time">2020-02-24 14:22:23</text>
  50. <text class="money">-12.98</text>
  51. </view>
  52. <view class="msg">
  53. 支付宝账号:18945623896
  54. </view>
  55. </view>
  56. <view class="item">
  57. <view class="item-top">
  58. <text class="name">提现到微信</text>
  59. <text :class="'status '+ (isAudit?'red':'blue')">{{isAudit ? '被驳回' : '已到账'}}</text>
  60. </view>
  61. <view class="item-bottom">
  62. <text class="time">2020-02-24 14:22:23</text>
  63. <text class="money">-12.98</text>
  64. </view>
  65. </view> -->
  66. </view>
  67. </view>
  68. </template>
  69. <script>
  70. import {
  71. walletManageGetWithdrawLog
  72. } from '../../../common/service.js';
  73. export default {
  74. data() {
  75. return {
  76. isAudit: true,
  77. list: [],
  78. page: 1,
  79. page_num: 20,
  80. }
  81. },
  82. onLoad() {
  83. this.getList();
  84. },
  85. methods: {
  86. // 获取列表
  87. getList(type) {
  88. const {page, page_num} = this;
  89. walletManageGetWithdrawLog({
  90. data: {
  91. page,
  92. page_num,
  93. },
  94. success: res => {
  95. if (res.code === 1) {
  96. const list = res.data.list;
  97. this.list = page > 1 ? [...this.list, ...list] : list;
  98. if (list.length === 0) {
  99. uni.showToast({
  100. icon: 'none',
  101. title: '没有更多数据了'
  102. });
  103. } else {
  104. this.page = this.page + 1;
  105. }
  106. } else {
  107. uni.showToast({
  108. icon: 'none',
  109. title: res.msg
  110. });
  111. }
  112. },
  113. complete: () => {
  114. this.getDataLoading = false;
  115. uni.stopPullDownRefresh();
  116. }
  117. })
  118. },
  119. /**
  120. * 下拉刷新
  121. */
  122. onPullDownRefresh() {
  123. this.getList();
  124. },
  125. /**
  126. * 触底加载
  127. */
  128. onReachBottom() {
  129. this.getList();
  130. },
  131. }
  132. }
  133. </script>
  134. <style scoped lang="scss">
  135. @import "./withdrawal-details.css";
  136. </style>