12345678910111213141516171819 |
- <view class='prod-items' bindtap='toProdPage' data-prodid="{{item.prodId}}">
- <view class='hot-imagecont'>
- <image src='{{item.pic}}' class='hotsaleimg' ></image>
- </view>
- <view class='hot-text'>
- <view class='hotprod-text'>{{item.prodName}}</view>
- <view class='prod-info' wx:if='{{sts==6}}'>{{item.prodCommNumber}}评价 {{item.positiveRating}}%好评</view>
- <view class='prod-text-info'>
- <view class='price'>
- <text wx:if='{{sts==2}}' class='deadline-price'>限时价</text>
- <text class='symbol'>¥</text>
- <text class='big-num'>{{wxs.parsePrice(item.price)[0]}}</text>
- <text class='small-num'>.{{wxs.parsePrice(item.price)[1]}}</text>
- </view>
- </view>
- </view>
- </view>
- <wxs module="wxs" src="../../wxs/number.wxs" />
|