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.
|
- <view class="index-rushToBuy">
- <view wx:if="{{list.length!=0}}" class="index-rushToBuy-title">拼团专场<text bindtap="gotomore">更多拼团</text><image src='{{jianUrl}}' mode="widthFix"></image></view>
- <scroll-view scroll-x class="index-scroll-view">
- <view class="commodity" wx:for="{{list}}" wx:key="unique">
- <view bindtap="gotodetail" data-couponChannelId="{{item.id}}" data-couponId="{{item.couponId}}" data-targetAd="{{item.targetAd}}">
- <image mode='aspectFill' lazy-load='true' class="commodity-img" src="{{item.coverImg}}" />
- <view class="commodity-info">
- <view class="commodity-info-name">{{item.title}}</view>
- <!-- <view class="commodity-info-name">{{item.subTitle}}</view> -->
- <view class="commodity-info-price">
- <text class="commodity-info-price-p">{{item.salePriceStr}}元</text>
- <text class="commodity-info-price-o">{{item.priceStr}}元</text>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
|