mySpreadOrder.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <view class="uni-flex uni-column myuser">
  3. <view class="uni-list">
  4. <view class="content">
  5. <view v-for="(item,key) in orders" :key="key" class="uni-flex justify-content">
  6. <view class="uni-product uni-flex">
  7. <view class="image-view">
  8. <image class="uni-product-image" :src="item.avatarUrl" />
  9. </view>
  10. <view class="uni-product-wrap uni-flex uni-column">
  11. <view class="nick">昵称:<text>{{item.nickName}}</text></view>
  12. <view class="orders">订单:{{item.orderNo}}</view>
  13. <view class="spreadMoney">金额/推广费:<text>{{item.subTotal}}/{{item.amount}}</text><text v-if="item.state==0">未确认</text><text
  14. v-if="item.state==1">已确认</text></view>
  15. <view class="orderTime">下单时间:<text>{{item.createDate}}</text></view>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <load-more :loadingType="loadingType" :contentText="contentText"></load-more>
  22. </view>
  23. </template>
  24. <script>
  25. import {
  26. mapState,
  27. mapMutations
  28. } from 'vuex'
  29. import loadMore from '@/components/uni-load-more.vue';
  30. var index;
  31. export default {
  32. computed: {
  33. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  34. },
  35. data() {
  36. return {
  37. orders: [],
  38. loadingType: 0,
  39. contentText: {
  40. contentdown: "上拉显示更多",
  41. contentrefresh: "正在加载...",
  42. contentnomore: "没有更多数据了"
  43. }
  44. };
  45. },
  46. onPullDownRefresh() {
  47. this.init();
  48. setTimeout(function() {
  49. uni.stopPullDownRefresh();
  50. }, 1000);
  51. },
  52. onShow() {
  53. this.init();
  54. },
  55. onLoad(e) {
  56. this.rank = e.rank;
  57. this.init();
  58. },
  59. methods: {
  60. init() {
  61. index = 1;
  62. if (!this.hasLogin) {
  63. uni.navigateTo({
  64. url: '../login/login',
  65. });
  66. } else {
  67. this.getData();
  68. }
  69. },
  70. getData() {
  71. if (this.loadingType !== 0) {
  72. return;
  73. }
  74. this.loadingType = 1;
  75. let user = JSON.parse(this.jyyUser);
  76. uni.request({
  77. url: this.webUrl + 'MyOrders',
  78. method: 'POST',
  79. data: {
  80. pageIndex: index,
  81. userid: user.id,
  82. },
  83. header: {
  84. 'content-type': 'application/x-www-form-urlencoded'
  85. },
  86. success: res => {
  87. if (res.data.result.uniMoneyLogList.length > 0) {
  88. this.orders = this.orders.concat(res.data.result.uniMoneyLogList);
  89. } else {
  90. this.loadingType = 2;
  91. return;
  92. }
  93. if (index == parseInt(res.data.result.pages)) {
  94. this.loadingType = 2;
  95. return;
  96. } else {
  97. this.loadingType = 0;
  98. }
  99. index++;
  100. },
  101. fail: () => {},
  102. complete: () => {}
  103. });
  104. },
  105. },
  106. onReachBottom() {
  107. this.getData();
  108. },
  109. components: {
  110. loadMore
  111. }
  112. }
  113. </script>
  114. <style>
  115. .myuser .orders {
  116. width: 350upx;
  117. overflow: hidden;
  118. text-overflow: ellipsis;
  119. white-space: nowrap
  120. }
  121. </style>