giftPage.ttml 1.63 KB
<!-- 
<import src="/pages/goodsDetail/picker/picker.wxml"/>
-->

<view class="container">
  <scroll-view class="scrollContainer" scroll-y="true" enable-back-to-top="true"> 
    <block tt:for="{{promotion_data_ary}}" 
           tt:for-item="promotionItem"
           tt:key="{{index}}">
      <view class="realHeader">
        <text class="headerText">{{promotionItem.promotion_title}}</text>
      </view>
      <block tt:for="{{promotionItem.goods_list}}" 
             tt:for-item="goodsItem"
             tt:for-index="goodIndex"
             tt:key="{{goodIndex}}">
        <view class="cellContainer" 
        data-product-skn="{{goodsItem.product_skn}}"
        data-product-sku="{{goodsItem.product_sku}}"
        data-item='{{promotionItem}}'
        bindtap="onPressProduct">
          <view class="imageContainer">
            <image class="image" src="{{goodsItem.goods_images}}"></image>
            <image class='tag-image' src="{{is_gift ? '../../images/zp-lab@2x.png' : '../../images/jjg-lab@2x.png'}}"/>
          </view>

          <!-- 商品名称 价格 加入购物车按钮 -->
          <view class='product-info-container'>
              <view>
                  <view class="titleText">{{goodsItem.product_name}}</view>
                  <view tt:if="{{!is_gift}}" class='price-title'>{{goodsItem.last_price}}</view>
              </view>
              <image class='add-shop-btn-image' src='../../images/jrgwc@2x.png'/>
          </view>
          <view tt:if="{{goodIndex!=0}}" class="separator"></view>
        </view>
      </block>
    </block>
  
  </scroll-view> 

<!-- 
  <template is="Picker" data="{{pickerData}}"/>
-->

</view>