item.wxml
531 Bytes
<wxs src="../../wxs/helper.wxs" module="helper" />
<view class="product-item" bindtap="goDetail">
<image class="item-image" mode="aspectFit" src="{{helper.image(item.defaultImages, 860, 644)}}"></image>
<view class="item-detail">
<text class="item-title">{{item.productName}}</text>
<view class="item-price">
<text class="price1">¥{{helper.round(item.salesPrice)}}</text>
<!--<text class="price2">¥{{helper.round(item.marketPrice)}}</text>-->
</view>
</view>
</view>