C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
1.0 KiB

  1. <view class="index-rushToBuy" wx:if="{{list.length>0}}">
  2. <view wx:if="{{list.length!=0}}" class="index-rushToBuy-title"><image src="{{pintuan}}" class='barginiconimg' mode='widthFix'/><text class='text-red'>拼团</text>专场<text bindtap="gotomore" class='moregroup'>更多拼团></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-price">
  10. <text class="commodity-info-price-p">{{item.salePriceStr}}元</text>
  11. <text class="commodity-info-price-o">{{item.priceStr}}元</text>
  12. </view>
  13. </view>
  14. </view>
  15. </view>
  16. </scroll-view>
  17. </view>