prodListItem.wxml 635 B

1234567891011121314151617
  1. <!--components/prodListItem/prodListItem.wxml-->
  2. <view class='prod-items' bindtap='toProdPage' data-prodid="{{prod.prodId}}">
  3. <view class='hot-imagecont'>
  4. <image src='{{prod.pic}}' class='hotsaleimg'></image>
  5. </view>
  6. <view class='hot-text'>
  7. <view class='hotprod-text'>{{prod.prodName}}</view>
  8. <view class='prod-info'>{{prod.brief}}</view>
  9. <view class='prod-text-info'>
  10. <view class='price'>
  11. <text class='symbol'>¥</text>
  12. <text class='big-num'>{{prod.price}}</text>
  13. </view>
  14. <image src='../../images/tabbar/basket-sel.png' class='basket-img'></image>
  15. </view>
  16. </view>
  17. </view>