order-list.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <view class="list-item hflex acenter" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  5. <view class="item-left">
  6. <image :src="item.goods.image" class="img" mode="aspectFill"></image>
  7. <image src="static/yitijioa.png" class="img-top" mode="aspectFill" v-if="item.status == 'applied'">
  8. </image>
  9. <image src="static/duihuanchenggong.png" class="img-top" mode="aspectFill"
  10. v-if="item.status == 'passed'"></image>
  11. </view>
  12. <view class="vflex item-right jbetween">
  13. <text class="text_hide2">{{item.goods.name}}</text>
  14. <text>{{item.price}}<span style="font-size: 26rpx;">积分</span></text>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. import $api from '@/static/js/api.js'
  22. var that = ''
  23. export default {
  24. data() {
  25. return {
  26. list: [],
  27. page: 1,
  28. last_page: 1,
  29. }
  30. },
  31. onLoad() {
  32. that = this
  33. this.getlist()
  34. },
  35. onShow() {
  36. },
  37. onPullDownRefresh() {
  38. },
  39. onReachBottom() {
  40. if (this.page < this.last_page) {
  41. this.page++
  42. this.getlist()
  43. } else {
  44. uni.$u.toast('已经到底了')
  45. return
  46. }
  47. },
  48. methods: {
  49. toinfo(item) {
  50. uni.navigateTo({
  51. url: '/pageB/order-detail?id=' + item.id
  52. })
  53. },
  54. getlist() {
  55. $api.req({
  56. url: 'integral/order',
  57. data: {
  58. is_page: 1,
  59. page: that.page,
  60. limit: 10,
  61. }
  62. }, function(res) {
  63. that.list = that.list.concat(res.data.list)
  64. that.last_page = res.data.last_page
  65. })
  66. },
  67. }
  68. }
  69. </script>
  70. <style lang="scss">
  71. .content {
  72. padding: 24rpx;
  73. .list {
  74. .list-item {
  75. background: #FFFFFF;
  76. border-radius: 16rpx;
  77. margin: 0 0 20rpx 0;
  78. padding: 20rpx;
  79. box-sizing: border-box;
  80. .item-left {
  81. position: relative;
  82. padding-right: 20rpx;
  83. .img {
  84. width: 196rpx;
  85. height: 196rpx;
  86. border-radius: 16rpx;
  87. overflow: hidden;
  88. }
  89. .img-top {
  90. position: absolute;
  91. width: 144rpx;
  92. height: 144rpx;
  93. top: 26rpx;
  94. left: 26rpx;
  95. }
  96. }
  97. .item-right {
  98. height: 196rpx;
  99. padding: 10rpx 0;
  100. box-sizing: border-box;
  101. width: calc(100% - 216rpx);
  102. text:first-child {
  103. font-size: 32rpx;
  104. font-family: PingFangSC, PingFang SC;
  105. font-weight: 400;
  106. color: #222222;
  107. }
  108. text:last-child {
  109. font-size: 44rpx;
  110. font-family: SFPro, SFPro;
  111. font-weight: 500;
  112. color: #FF4954;
  113. }
  114. }
  115. }
  116. }
  117. }
  118. </style>