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.

18 line
918 B

  1. <view class="index-rushToBuy">
  2. <view 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 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>