productListCell.wxml 875 Bytes

<view class="product" style="width:{{listWidth}}px;margin-left:{{listMarginHorizontal}}px;margin-bottom:{{listImageTop}}px;" bindtap="productCellTapped" data-product-skn="{{item.product_skn}}">

  <image mode="aspectFit" src="{{item.default_images}}" style="width:{{listImageWidth}}px;height:{{listImageHeight}}px;"/>


  <text class="productTitle">{{item.product_name}}</text>

  <view class='bottomContainerView'>
    <view class="priceContainer">
      <text class="price1" style="color:{{item.showOriginPrice ? '#d0021b' : '#444444'}}">{{item.salePriceStr}}</text>
      <text class="price2">{{item.showOriginPrice ? item.originPriceStr : ''}}</text>
    </view>
    <image wx:if="{{showAddShopCartBtn && (item.is_shop_cart_add == 'Y')}}" class='addToShopCartImage' src='images/jrgwc@2x.png' catchtap='addToShopCartAction' data-item='{{item}}'></image>
  </view>
</view>