list.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <!-- 积分商品列表 -->
  2. <template>
  3. <view class="score-wrap">
  4. <view class="goods-wrap u-p-20 u-flex u-flex-wrap">
  5. <view class="goods-item u-m-b-20" v-for="leftGoods in scoreList" :key="leftGoods.id">
  6. <shopro-goods-card
  7. :image="leftGoods.image"
  8. :title="leftGoods.title"
  9. @click="$Router.push({ path: '/pages/goods/detail', query: { id: leftGoods.id, type: 'score' } })"
  10. >
  11. <template #cardBottom>
  12. <view class="price-box u-flex u-row-between u-flex-wrap">
  13. <view class="beans-box u-flex u-m-10">
  14. <image class="bean-img u-m-r-10" :src="$IMG_URL + '/imgs/score/score.png'" mode=""></image>
  15. {{ leftGoods.price }}
  16. </view>
  17. <view class="sales-box u-m-10">已兑换{{ leftGoods.sales }}件</view>
  18. </view>
  19. </template>
  20. </shopro-goods-card>
  21. </view>
  22. </view>
  23. <!-- 缺省页 -->
  24. <shopro-empty
  25. v-if="isEmpty"
  26. @click="$Router.pushTab('/pages/index/index')"
  27. :image="$IMG_URL + '/imgs/empty/empty_goods.png'"
  28. tipText="暂无积分商品"
  29. btnText="去首页逛逛"
  30. ></shopro-empty>
  31. <!-- 加载更多 -->
  32. <u-loadmore v-if="!isEmpty" height="80rpx" :status="loadStatus" icon-type="flower" color="#ccc" />
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. components: {},
  38. data() {
  39. return {
  40. scoreList: [],
  41. isEmpty: false, //无数据
  42. loadStatus: 'loadmore', //loadmore-加载前的状态,loading-加载中的状态,nomore-没有更多的状态
  43. currentPage: 1,
  44. lastPage: 1
  45. };
  46. },
  47. onLoad() {
  48. this.getScoreShopsList();
  49. // 触底监听
  50. uni.$on('uOnReachBottom', () => {
  51. if (this.currentPage < this.lastPage) {
  52. this.currentPage += 1;
  53. this.getScoreShopsList();
  54. }
  55. });
  56. },
  57. computed: {},
  58. methods: {
  59. //积分商品列表
  60. getScoreShopsList() {
  61. let that = this;
  62. that.loadStatus = 'loading';
  63. that.$http('goods.scoreList', {
  64. page: that.currentPage
  65. }).then(res => {
  66. if (res.code == 1) {
  67. that.scoreList = [...that.scoreList, ...res.data.data];
  68. that.isEmpty = !that.scoreList.length;
  69. that.lastPage = res.data.last_page;
  70. that.loadStatus = that.currentPage < res.data.last_page ? 'loadmore' : 'nomore';
  71. }
  72. });
  73. }
  74. }
  75. };
  76. </script>
  77. <style lang="scss">
  78. .goods-item {
  79. margin-right: 20rpx;
  80. margin-bottom: 20rpx;
  81. &:nth-child(2n) {
  82. margin-right: 0;
  83. }
  84. .price-box {
  85. .beans-box {
  86. font-size: 32upx;
  87. font-weight: bold;
  88. color: rgba(228, 141, 4, 1);
  89. .bean-img {
  90. width: 36upx;
  91. height: 36upx;
  92. }
  93. }
  94. .sales-box {
  95. font-size: 22rpx;
  96. font-weight: 500;
  97. color: rgba(153, 153, 153, 1);
  98. }
  99. }
  100. }
  101. </style>