list.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <template>
  2. <view class="app-container">
  3. <view class="top-container">
  4. <view class="item" :class="tabCurrent === '' ? 'current':''" @tap="changeTab('')">
  5. <view class="money">{{total.totalAmount | numToFixed}}</view>
  6. <view class="text">累计总收益</view>
  7. </view>
  8. <view class="item" :class="tabCurrent === 'OVER' ? 'current':''" @tap="changeTab('OVER')">
  9. <view class="money">{{total.paidAmount | numToFixed}}</view>
  10. <view class="text">已结算收益</view>
  11. </view>
  12. <view class="item" :class="tabCurrent === 'ING' ? 'current':''" @tap="changeTab('ING')">
  13. <view class="money">{{total.waitingAmount | numToFixed}}</view>
  14. <view class="text">待结算收益</view>
  15. </view>
  16. </view>
  17. <view class="out-title">
  18. <view>收益明细</view>
  19. <view class="right" @tap="toReturn">查看退款明细</view>
  20. </view>
  21. <view class="list-container">
  22. <block v-for="(item, index) in profitList" :key='index'>
  23. <view class="item" @tap="toDetail(item.orderId, item.orderRefundId)">
  24. <view class="left">
  25. <view class="row">订单编号:{{item.orderId}}</view>
  26. <view class="row">订单金额:¥{{item.payment | numToFixed}}</view>
  27. <view class="row">支付时间:{{item.createTime}}</view>
  28. </view>
  29. <view class="right">
  30. <view class="state wait" v-if="item.status == 'ING'">待结算</view>
  31. <view class="state over" v-if="item.status == 'OVER'">已结算</view>
  32. <view class="state cancel" v-if="item.status == 'CANCEL'">已取消</view>
  33. <view class="price" v-if="item.status !== 'CANCEL'">+{{item.amount | numToFixed}}</view>
  34. <view class="price" v-else></view>
  35. </view>
  36. </view>
  37. </block>
  38. </view>
  39. <no-data v-if="!profitList.length" :showText="'暂无收益记录'"></no-data>
  40. <loading-text v-if="profitList.length" :loading="loading" :noMore="noMore" ></loading-text>
  41. </view>
  42. </template>
  43. <script>
  44. import {mapState} from 'vuex';
  45. export default {
  46. data() {
  47. return {
  48. tabCurrent: '',
  49. total: {}, // 收益统计
  50. profitList: [], // 收益列表
  51. pageNum: 1,
  52. pageSize: 10,
  53. noMore: false,
  54. loading: false,
  55. }
  56. },
  57. computed:{
  58. ...mapState(['userInfo', 'isLogin', 'userId'])
  59. },
  60. onLoad() {
  61. this.getTotal();
  62. this.getProfitList();
  63. },
  64. // 下拉刷新
  65. onPullDownRefresh() {
  66. this.pageNum = 1;
  67. this.getTotal();
  68. this.getProfitList();
  69. },
  70. // 上拉加载
  71. onReachBottom() {
  72. this.getProfitList(1);
  73. },
  74. methods: {
  75. // 获取累积收益
  76. getTotal() {
  77. this.$axios({
  78. url: '/user/profit',
  79. method: 'get',
  80. params: {
  81. userId: this.userId
  82. }
  83. }).then(res => {
  84. this.total = res.data;
  85. })
  86. },
  87. // 获取列表
  88. getProfitList(loadMore) {
  89. if(this.noMore && loadMore)return;
  90. this.noMore = false
  91. if(!loadMore){
  92. this.pageNum = 1;
  93. }else{
  94. this.loading = true;
  95. }
  96. this.$axios({
  97. url: '/user/profit/list',
  98. method: 'get',
  99. params: {
  100. pageNum: this.pageNum,
  101. pageSize: this.pageSize,
  102. userId: this.userId,
  103. status: this.tabCurrent,
  104. },
  105. isLoading: !loadMore
  106. }).then(res => {
  107. let _list = res.data.records;
  108. let pageTotal = res.data.pages;
  109. if(this.pageNum >= pageTotal){
  110. this.noMore = true;
  111. }
  112. if (_list.length) {
  113. this.pageNum += 1
  114. }
  115. if (loadMore) {
  116. this.profitList = this.profitList.concat(_list);
  117. this.loading = false;
  118. } else {
  119. this.profitList = _list;
  120. }
  121. uni.stopPullDownRefresh();
  122. })
  123. },
  124. changeTab(tab) {
  125. this.tabCurrent = tab;
  126. this.getProfitList();
  127. },
  128. toDetail(orderId, orderRefundId) {
  129. uni.navigateTo({
  130. url:'/pages/mine/profit/detail?orderId=' + orderId + '&orderRefundId=' + orderRefundId
  131. })
  132. },
  133. toReturn() {
  134. uni.navigateTo({
  135. url:'/pages/mine/profit/return'
  136. })
  137. }
  138. }
  139. }
  140. </script>
  141. <style lang="scss">
  142. .app-container {
  143. background: #F4F2F2;
  144. padding: 20rpx;
  145. box-sizing: border-box;
  146. }
  147. .top-container {
  148. background: #FFFFFF;
  149. border-bottom: 1px solid #F4F2F2;
  150. height: 160rpx;
  151. box-sizing: border-box;
  152. display: flex;
  153. align-items: center;
  154. border-radius: 10rpx;
  155. .item {
  156. width: 33.33%;
  157. display: flex;
  158. align-items: center;
  159. justify-content: center;
  160. flex-direction: column;
  161. box-sizing: border-box;
  162. font-weight: normal;
  163. opacity: 0.8;
  164. &:nth-child(2) {
  165. border-left: 1px solid #E5E5E5;
  166. border-right: 1px solid #E5E5E5;
  167. }
  168. &.current {
  169. font-weight: bold;
  170. opacity: 1;
  171. .text {
  172. border-bottom: 2px solid #FE781F;
  173. }
  174. }
  175. .money {
  176. font-size: 40rpx;
  177. color: #FE781F;
  178. line-height: 40rpx;
  179. }
  180. .text {
  181. font-size: 28rpx;
  182. color: #666666;
  183. line-height: 36rpx;
  184. margin-top: 16rpx;
  185. }
  186. }
  187. }
  188. .out-title {
  189. font-size: 28rpx;
  190. color: #333333;
  191. font-weight: bold;
  192. padding: 20rpx 10rpx 10rpx;
  193. display: flex;
  194. justify-content: space-between;
  195. .right {
  196. font-weight: normal;
  197. }
  198. }
  199. .list-container {
  200. padding: 20rpx;
  201. .item {
  202. display: flex;
  203. justify-content: space-between;
  204. align-items: center;
  205. height: 160rpx;
  206. margin-bottom: 20rpx;
  207. background: #FFFFFF;
  208. border-radius: 20rpx;
  209. padding: 0 20rpx;
  210. .left {
  211. height: 134rpx;
  212. display: flex;
  213. flex-direction: column;
  214. justify-content: space-between;
  215. .row {
  216. font-size: 28rpx;
  217. color: #666666;
  218. }
  219. }
  220. .right {
  221. height: 134rpx;
  222. display: flex;
  223. flex-direction: column;
  224. justify-content: space-between;
  225. align-items: flex-end;
  226. .state {
  227. font-size: 28rpx;
  228. &.wait {
  229. color: #FE781F;
  230. }
  231. &.over {
  232. color: #3F9EFF;
  233. }
  234. &.cancel {
  235. color: #999999;
  236. }
  237. }
  238. .price {
  239. font-size: 32rpx;
  240. color: #333333;
  241. }
  242. }
  243. }
  244. }
  245. </style>