coupon.wxml 977 B

123456789101112131415
  1. <block wx:if="{{item.data}}">
  2. <view class="diy-coupon col-{{item.params.couponstyle?item.params.couponstyle:3}}" style="{{item.style.background?'background:'+item.style.background+';':''}}{{item.style.margintop?'margin:'+item.style.margintop/2+'px 0;':''}}">
  3. <view class="diy-coupon-item" wx:for='{{item.data}}' wx:for-item='items' wx:for-index='idx' wx:key="coup">
  4. <view bindtap='get_quan' data-quan_id="{{items.couponid}}" >
  5. <view class="inner" style="border:0; background:{{items.couponcolor}};color:#ffffff;margin:{{item.style.margintop/2}}px {{item.style.marginleft/2}}px;">
  6. <view class="name">{{items.price}}</view>
  7. <view class="receive" style="border: 1px solid ;">立即领取</view>
  8. <view class="i" style="left: -0.35rem;background:#ffffa6;"></view>
  9. <view class="i" style="right: -0.35rem;background: #ffffa6;"></view>
  10. </view>
  11. </view>
  12. </view>
  13. </view>
  14. </block>