C端小程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
982 B

  1. <view class="index-rushToBuy">
  2. <view wx:if="{{list.length!=0}}" class="index-rushToBuy-title">拼团专场<text bindtap="gotomore">更多拼团></text></view>
  3. <scroll-view scroll-x class="index-scroll-view">
  4. <view class="commodity" wx:for="{{list}}" wx:key="unique">
  5. <view bindtap="gotodetail" data-couponChannelId="{{item.id}}" data-couponId="{{item.couponId}}" data-targetAd="{{item.targetAd}}">
  6. <image mode='aspectFill' lazy-load='true' class="commodity-img" src="{{item.coverImg}}" />
  7. <view class="commodity-info">
  8. <view class="commodity-info-name">{{item.title}}</view>
  9. <!-- <view class="commodity-info-name">{{item.subTitle}}</view> -->
  10. <view class="commodity-info-price">
  11. <text class="commodity-info-price-p">{{item.salePriceStr}}元</text>
  12. <text class="commodity-info-price-o">{{item.priceStr}}元</text>
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </scroll-view>
  18. </view>