C端小程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

16 Zeilen
914 B

  1. <view class="index-rushToBuy">
  2. <view wx:if="{{list.length!=0}}" class="index-rushToBuy-title">砍价专场<text bindtap="gotomore">更多砍价</text><image src='{{jianUrl}}' mode="widthFix"></image></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='useprice'>可砍至</text><text class="commodity-info-price-p">{{item.salePriceStr}}元</text>
  11. </view>
  12. </view>
  13. </view>
  14. </view>
  15. </scroll-view>
  16. </view>