home-group-booking.ttml
885 Bytes
<!-- 首页 横向拼团 -->
<scroll-view class="activity-container-footer" scroll-x="true">
<block wx:for="{{data}}" wx:key="{{index}}" wx:for-item="item">
<view class="group-product-item"
style='margin-right:{{index == data.length - 1?30:0}}rpx'
bindtap="groupItemTapped"
data-skn="{{item.productSkn}}"
data-activity_id="{{item.activityId}}">
<image src="{{item.defaultImages}}" class="group-product-image"></image>
<view class="group-product-name">{{item.brandName}}</view>
<view class='group-product-price-container'>
<view class='group-product-price'>{{item.formatCollagePrice}}</view>
<view class='group-product-market-price'>{{item.marketPrice}}</view>
</view>
<view class='group-product-joinnum'>{{item.collagedPersonNum}}人已拼</view>
</view>
</block>
</scroll-view>