withdrawalLog.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <template>
  2. <!-- 提现记录 -->
  3. <s-layout class="wallet-wrap" :bgStyle="{'backgroundColor':'#ffffff'}" title="提现记录" navbar="normal">
  4. <view class="model-box ss-flex-col">
  5. <scroll-view class="list-box" scroll-y="true" @touchmove.stop>
  6. <view v-if="state.pagination.total > 0" style="padding: 20rpx;">
  7. <view class="list-item ss-flex ss-col-center ss-row-between "
  8. v-for="(item,index) in state.pagination.list" :key="item.id"
  9. style="padding:0;padding: 20rpx 0;border-bottom: 1px solid #c4c4c4;">
  10. <view class="ss-flex ss-col-center" style="width: 100%;">
  11. <view class="ss-flex ss-m-t-10"
  12. style="flex-direction: column;align-items: flex-start;width: 100%;">
  13. <view class="name" style="width: 100%;">
  14. {{item.withdrawalType === 1 ? '微信' : item.withdrawalType === 2 ? '支付宝' : '银行卡'}}
  15. ({{item.withdrawalAccount}})
  16. <text style="float: right;" class="color-red">
  17. ¥{{item.amount}}
  18. </text>
  19. </view>
  20. <view class="time " style="width: 100%;">
  21. {{sheep.$helper.timeFormat(item.createTime, 'yyyy-mm-dd hh:MM')}}
  22. <text style="float: right;" >{{item.status ? item.status === 1 ? '已到账' : '提现失败' : '提现中'}}</text>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <s-empty v-else text="暂无数据" paddingTop="200" icon="/static/data-empty.png" />
  29. <uni-load-more v-if="state.pagination.total > 0" :status="state.loadStatus" :content-text="{
  30. contentdown: '点击加载更多',
  31. }" @tap="onLoadMore(true)" @scrolltolower="onLoadMore(true)" />
  32. </scroll-view>
  33. </view>
  34. </s-layout>
  35. </template>
  36. <script setup>
  37. import sheep from '@/sheep';
  38. import {
  39. onLoad,
  40. onReachBottom
  41. } from '@dcloudio/uni-app';
  42. import {
  43. computed,
  44. reactive
  45. } from 'vue';
  46. import {
  47. points2point
  48. } from '@/sheep/hooks/useGoods';
  49. import _ from 'lodash';
  50. import dayjs from 'dayjs';
  51. import PointApi from '@/sheep/api/member/point';
  52. import {
  53. resetPagination
  54. } from '@/sheep/util';
  55. import WithdrawalApi from '@/sheep/api/distri/withdrawal';
  56. const userWallet = computed(() => sheep.$store('user').userWallet);
  57. const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
  58. const userInfo = computed(() => sheep.$store('user').userInfo);
  59. const sys_navBar = sheep.$platform.navbar;
  60. const state = reactive({
  61. currentTab: 0,
  62. pagination: {
  63. list: [],
  64. total: 0,
  65. pageSize: 10,
  66. pageNo: 1,
  67. },
  68. loadStatus: '',
  69. });
  70. async function getLogList() {
  71. state.loadStatus = 'loading';
  72. // isFreeze为true是冻结佣金 isFreeze为false是已拿到的佣金
  73. let {
  74. code,
  75. data
  76. } = await WithdrawalApi.getWithdrawalPage({
  77. pageNo: state.pagination.pageNo,
  78. pageSize: state.pagination.pageSize,
  79. });
  80. if (code !== 0) {
  81. return;
  82. }
  83. let list = _.concat(state.pagination.list, data.list);
  84. state.pagination.list = list;
  85. state.pagination.total = data.total;
  86. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  87. }
  88. onLoad(() => {
  89. getLogList();
  90. });
  91. function onLoadMore() {
  92. if (state.loadStatus === 'noMore') {
  93. return;
  94. }
  95. state.pagination.pageNo++;
  96. getLogList();
  97. }
  98. onReachBottom(() => {
  99. onLoadMore();
  100. });
  101. </script>
  102. <style lang="scss" scoped>
  103. .color-red {
  104. color: red;
  105. }
  106. .color-green {
  107. color: green;
  108. }
  109. .score-box {
  110. margin: 20rpx;
  111. border-radius: 20rpx;
  112. padding-top: 100rpx;
  113. }
  114. .avatar-box {
  115. width: 100rpx;
  116. height: 100rpx;
  117. border-radius: 50%;
  118. overflow: hidden;
  119. .avatar-img {
  120. width: 100%;
  121. height: 100%;
  122. }
  123. }
  124. .value-box {
  125. width: 100rpx;
  126. height: 100rpx;
  127. line-height: 100rpx;
  128. text-align: center;
  129. border-radius: 50%;
  130. border: 2px solid #f6f6f6;
  131. }
  132. .btn {
  133. width: 300rpx;
  134. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  135. border-radius: 20rpx;
  136. font-size: 30rpx;
  137. font-weight: 500;
  138. line-height: 80rpx;
  139. color: $white;
  140. position: relative;
  141. z-index: 1;
  142. }
  143. .header-box {
  144. width: 100%;
  145. background: linear-gradient(180deg, var(--ui-BG-Main) 0%, var(--ui-BG-Main-gradient) 100%) no-repeat;
  146. background-size: 750rpx 100%;
  147. padding: 0 0 120rpx 0;
  148. box-sizing: border-box;
  149. .score-box {
  150. height: 100%;
  151. .all-num {
  152. font-size: 50rpx;
  153. font-weight: bold;
  154. color: #fff;
  155. font-family: OPPOSANS;
  156. }
  157. .all-title {
  158. font-size: 26rpx;
  159. font-weight: 500;
  160. color: #fff;
  161. }
  162. .cicon-help-o {
  163. color: #fff;
  164. font-size: 28rpx;
  165. }
  166. }
  167. }
  168. // 筛选
  169. .filter-box {
  170. height: 114rpx;
  171. background-color: $bg-page;
  172. .total-box {
  173. font-size: 24rpx;
  174. font-weight: 500;
  175. color: $dark-9;
  176. }
  177. .date-btn {
  178. background-color: $white;
  179. line-height: 54rpx;
  180. border-radius: 27rpx;
  181. padding: 0 20rpx;
  182. font-size: 24rpx;
  183. font-weight: 500;
  184. color: $dark-6;
  185. .ss-seldate-icon {
  186. font-size: 50rpx;
  187. color: $dark-9;
  188. }
  189. }
  190. }
  191. .list-box {
  192. // width: 600rpx;
  193. // padding: 0 30rpx;
  194. overflow-y: auto;
  195. height: 100vh;
  196. .list-item {
  197. background: #fff;
  198. // border-bottom: 1rpx solid #dfdfdf;
  199. padding: 30rpx;
  200. .name {
  201. font-size: 28rpx;
  202. font-weight: 500;
  203. color: rgba(102, 102, 102, 1);
  204. line-height: 28rpx;
  205. // margin-bottom: 20rpx;
  206. }
  207. .time {
  208. font-size: 24rpx;
  209. font-weight: 500;
  210. color: rgba(196, 196, 196, 1);
  211. line-height: 24px;
  212. }
  213. .add {
  214. font-size: 30rpx;
  215. font-weight: 500;
  216. color: #e6b873;
  217. }
  218. .minus {
  219. font-size: 30rpx;
  220. font-weight: 500;
  221. color: $dark-3;
  222. }
  223. }
  224. }
  225. </style>