activity.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view class="content">
  3. <view class="Box">
  4. <view
  5. v-for="(item, index) in productList" :key="index" class="productBox"
  6. @click="goodsDateils(item.shopId, item.productId, item.skuId)"
  7. >
  8. <view class="proImg">
  9. <image :src="item.image" mode=""></image>
  10. </view>
  11. <view class="rightBox">
  12. <view class="proTitle">
  13. {{ item.productName }}
  14. </view>
  15. <view class="price">
  16. <text class="fs36 font-color-red">
  17. ¥{{ item.price }}
  18. </text>
  19. <text class="mar-left-10 fs26">
  20. {{ item.users }}人付款
  21. </text>
  22. </view>
  23. <view class="flex-sp-between flex-display mar-top-20" @click.stop="goStore(item.shopId)">
  24. <view>
  25. {{ item.shopName }}
  26. </view>
  27. <view>
  28. <image class="rightIcon" src="../static/images/origin/arrowRight.png" mode="aspectFill"></image>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. const NET = require('@/utils/request')
  38. const API = require('@/config/api')
  39. export default {
  40. data() {
  41. return {
  42. list: [],
  43. pageSize: 1,
  44. productList: []
  45. }
  46. },
  47. onPullDownRefresh() { // 上拉触底函数
  48. this.pageSize = this.pageSize + 1
  49. this.GetremenList()
  50. },
  51. onLoad() {
  52. this.GetremenList()
  53. },
  54. methods: {
  55. // 获取列表数据
  56. GetremenList() {
  57. const timestamp = new Date().getTime()
  58. NET.request(API.GetremenList, {
  59. page: this.pageSize,
  60. pageSize: 5,
  61. timestamp
  62. }, 'get').then((res) => {
  63. uni.stopPullDownRefresh()
  64. if (res.code == 200) {
  65. this.productList = res.data.list
  66. } else {
  67. uni.showToast({
  68. title: res.message,
  69. icon: 'none'
  70. })
  71. }
  72. })
  73. },
  74. // 跳转店铺
  75. goStore(shopId) {
  76. uni.navigateTo({
  77. url: './store/index?storeId=' + shopId
  78. })
  79. },
  80. // 商品详情
  81. goodsDateils(shopId, productId, skuId) {
  82. uni.navigateTo({
  83. url: './goodsModule/goodsDetails?shopId=' + shopId + '&productId=' + productId + '&skuId=' +
  84. skuId
  85. })
  86. }
  87. }
  88. }
  89. </script>
  90. <style lang="scss" scoped>
  91. page {
  92. background-color: #FBE7E0;
  93. }
  94. .content {
  95. .Box {
  96. padding: 30upx;
  97. .productBox {
  98. background-color: #FFFFFF;
  99. height: 280upx;
  100. margin-bottom: 20upx;
  101. border-radius: 20upx;
  102. padding: 20upx;
  103. display: flex;
  104. justify-content: space-between;
  105. .proImg {
  106. width: 240upx;
  107. height: 240upx;
  108. image {
  109. width: 100%;
  110. height: 100%;
  111. border-radius: 20upx;
  112. }
  113. }
  114. .rightBox {
  115. width: 60%;
  116. .proTitle {
  117. overflow: hidden;
  118. text-overflow: ellipsis;
  119. display: -webkit-box;
  120. -webkit-box-orient: vertical;
  121. -webkit-line-clamp: 2;
  122. }
  123. .biao {
  124. margin-top: 20upx;
  125. text {
  126. margin-right: 10upx;
  127. border-radius: 5upx;
  128. color: #C5AA7B;
  129. padding: 5upx 10upx 5upx;
  130. background-color: #FBE7E0;
  131. }
  132. }
  133. .price {
  134. margin-top: 55upx;
  135. }
  136. .rightIcon {
  137. width: 24upx;
  138. height: 24upx;
  139. }
  140. }
  141. }
  142. }
  143. }
  144. </style>