commissionHistory.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <view class="box">
  3. <!-- 统计 -->
  4. <view class="sumBg">
  5. <view class="viewBg">
  6. <view class="money" style="color: #FF4F00;">¥{{detailData.totalMoney}}</view>
  7. <view class="moneyTitle">累计佣金
  8. </view>
  9. </view>
  10. <view class="line"></view>
  11. <view class="viewBg">
  12. <view class="money">¥{{detailData.withdrawalMoney}}</view>
  13. <view class="moneyTitle">累计提现
  14. </view>
  15. </view>
  16. <view class="line"></view>
  17. <view class="viewBg" >
  18. <view class="money">¥{{detailData.cantidatMoney}}</view>
  19. <view class="moneyTitle">可提现
  20. </view>
  21. </view>
  22. </view>
  23. <!-- 明细 -->
  24. <view class="mingxiBg" v-if="arr.length > 0">
  25. <view v-for="(item,index) in arr" :key="index">
  26. <view class="itemBg">
  27. <image :src='item.MemberHeadImg' mode="" style="width: 72rpx; height: 72rpx; border-radius: 36rpx;"></image>
  28. <view class="nickName" v-if="item.MemberNickName">{{item.MemberNickName}}</view>
  29. <view class="time">{{item.CreateTime.slice(0,item.CreateTime.length-8)}}</view>
  30. <view class="jine">+{{item.Money}}</view>
  31. </view>
  32. </view>
  33. </view>
  34. <!-- 上拉 加载更多 -->
  35. <view class="noMore" v-if="noMoreShow">没有更多数据</view>
  36. <view style="height: 120rpx;"></view>
  37. <view class="bottomView">
  38. <view class="goExtract" @click="gonavigateTo('extract?okMoney='+ detailData.cantidatMoney)">去提现</view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. page:1,
  47. detailData:{},
  48. arr: [],
  49. noMoreShow: false,
  50. }
  51. },
  52. onShow() {
  53. this.getDetailData();
  54. this.page = 1;
  55. this.getItemData();
  56. },
  57. methods: {
  58. getDetailData() {
  59. uni.showLoading({
  60. title: '加载中'
  61. })
  62. let url = 'worldKeepCar/worldDistribution/queryDistributionIndexDetail',
  63. params = {
  64. }
  65. this.$http(url, params, 'GET').then(res => {
  66. uni.hideLoading();
  67. var data = res.data
  68. // 处理 undefined和null转为空白字符串
  69. for (const key in data) {
  70. data[key] = this.$praseStrEmpty(data[key])
  71. }
  72. this.detailData = data
  73. })
  74. },
  75. getItemData() {
  76. uni.showLoading({
  77. title: '加载中'
  78. })
  79. let url = 'worldKeepCar/worldDistribution/listEarningsPage',
  80. params = {
  81. page:this.page,
  82. limit:10,
  83. }
  84. this.$http(url, params, 'GET').then(res => {
  85. uni.hideLoading();
  86. var list = res.data.Items
  87. // 处理 undefined和null转为空白字符串
  88. list.forEach((item, index) => {
  89. for (const key in item) {
  90. item[key] = this.$praseStrEmpty(item[key])
  91. }
  92. })
  93. if (this.page == 1) {
  94. this.arr = list
  95. } else {
  96. this.arr = this.arr.concat(list)
  97. }
  98. if (list.length < 10) {
  99. this.noMoreShow = true
  100. } else {
  101. this.noMoreShow = false
  102. }
  103. })
  104. },
  105. gonavigateTo(url) {
  106. uni.navigateTo({
  107. url: url
  108. })
  109. }
  110. },
  111. // 下拉刷新 上拉加载更多
  112. onPullDownRefresh() {
  113. this.page = 1;
  114. this.getItemData()
  115. this.getDetailData()
  116. setTimeout(function() {
  117. uni.stopPullDownRefresh();
  118. }, 1000);
  119. },
  120. onReachBottom() {
  121. this.page++;
  122. this.getItemData()
  123. },
  124. }
  125. </script>
  126. <style scoped>
  127. .box {
  128. min-height: 100vh;
  129. background: #F4F5F7;
  130. padding-top: 20rpx;
  131. }
  132. .sumBg {
  133. display: flex;
  134. justify-content: space-between;
  135. align-items: center;
  136. margin: 0 24rpx 20rpx;
  137. padding: 36rpx 50rpx;
  138. background-color: #FFFFFF;
  139. border-radius: 10rpx;
  140. }
  141. .viewBg {
  142. display: flex;
  143. flex-direction: column;
  144. align-items: center;
  145. background-color: #FFFFFF;
  146. }
  147. .money {
  148. font-size: 38rpx;
  149. color: #000000;
  150. font-weight: bold;
  151. }
  152. .moneyTitle {
  153. font-size: 28rpx;
  154. color: #666666;
  155. }
  156. .line {
  157. width: 1rpx;
  158. height: 73rpx;
  159. background-color: #EEEEEE;
  160. }
  161. .mingxiBg
  162. {
  163. margin: 0rpx 24rpx;
  164. background-color: #FFFFFF;
  165. border-radius: 10rpx;
  166. padding: 20rpx;
  167. }
  168. .itemBg {
  169. height: 98rpx;
  170. display: flex;
  171. justify-content: space-between;
  172. align-items: center;
  173. }
  174. .nickName {
  175. font-size: 30rpx;
  176. color: #3C3C3C;
  177. flex-grow: 1;
  178. margin: 0 15rpx;
  179. }
  180. .time {
  181. font-size: 30rpx;
  182. color: #999999;
  183. margin: 0 15rpx;
  184. }
  185. .jine {
  186. font-size: 32rpx;
  187. color: #FF4F00;
  188. font-weight: bold;
  189. margin: 0 15rpx;
  190. }
  191. .bottomView{
  192. width: 100%;
  193. height: 120rpx;
  194. position: fixed;
  195. left: 0;
  196. bottom: 0;
  197. background-color: #FFFFFF;
  198. }
  199. .goExtract{
  200. margin: 23rpx 30rpx;
  201. border-radius: 37rpx;
  202. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  203. font-size: 30rpx;
  204. color: #FFFFFF;
  205. font-weight: bold;
  206. height: 74rpx;
  207. line-height: 74rpx;
  208. text-align: center;
  209. }
  210. .noMore {
  211. text-align: center;
  212. line-height: 50rpx;
  213. color: #999999;
  214. font-size: 28rpx;
  215. }
  216. </style>