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
969 B

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