return.vue 4.3 KB

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