C端小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
768 B

  1. <view class="index-rushToBuy">
  2. <view class="index-rushToBuy-title">限时抢购</view>
  3. <scroll-view scroll-x class="index-scroll-view">
  4. <view class="commodity" wx:for="{{list}}" wx:key="unique">
  5. <navigator url="/pages/coupons/details/index">
  6. <image class="commodity-img" src="{{item.img}}" />
  7. <view class="commodity-info">
  8. <view class="commodity-info-name">{{item.name}}</view>
  9. <view class="commodity-info-time">{{item.time}}</view>
  10. <view class="commodity-info-price">
  11. <text class="commodity-info-price-p">¥{{item.pPrice}}</text>
  12. <text class="commodity-info-price-o">¥{{item.oPrice}}</text>
  13. </view>
  14. </view>
  15. </navigator>
  16. </view>
  17. </scroll-view>
  18. </view>