myCoupon.wxml 1019 B

1234567891011121314151617181920212223
  1. <!-- 我的优惠券 -->
  2. <view class="container">
  3. <view class="h-tabs">
  4. <view class="h-tab {{type==0?'on':''}}" data-type="0" bindtap='changeTab'>未使用({{unUseCount}})</view>
  5. <view class="h-tab {{type==1?'on':''}}" data-type="1" bindtap='changeTab'>使用记录({{useCount}})</view>
  6. <view class="h-tab {{type==2?'on':''}}" data-type="2" bindtap='changeTab'>已过期({{expiredCount}})</view>
  7. </view>
  8. <view class="coupons">
  9. <block wx:for="{{couponList}}" wx:key="id">
  10. <coupon bindlongtap="delCouponHandle" data-couponuserid="{{item.couponUserId}}" canUse="{{type == 0}}" item="{{item}}" type="{{type}}"></coupon>
  11. </block>
  12. </view>
  13. <!-- <view class="empty" wx:if="{{!couponList.length}}">这里还没有任何东西~</view> -->
  14. <!-- 空 -->
  15. <view class="empty" wx:if="{{!couponList.length}}">
  16. <view class="empty-icon">
  17. <image src="../../images/icon/empty.png"></image>
  18. </view>
  19. <view class="empty-text">这里还没有相关优惠券~</view>
  20. </view>
  21. </view>