coupon.wxml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <view class="box">
  2. <view class="top" wx:if="{{arr!='' || arr1 != ''}}">
  3. <view class="{{index==0?'active':''}}" bindtap="select" data-index="0">
  4. <text>未使用({{arr.length}})</text>
  5. <text></text>
  6. </view>
  7. <view class="{{index==1?'active':''}}" bindtap="select" data-index="1">
  8. <text>已失效({{arr1.length}})</text>
  9. <text></text>
  10. </view>
  11. <view class="{{index==2?'active':''}}" bindtap="select" data-index="2">
  12. <text>已使用({{arr2.length}})</text>
  13. <text></text>
  14. </view>
  15. </view>
  16. <view class="null" wx:if="{{arr=='' && index == 0}}">
  17. <image src="{{img}}weapp/coupon_null.png" style="width:322rpx;height:322rpx;"></image>
  18. <text>暂无优惠券~</text>
  19. </view>
  20. <view class="null" wx:if="{{arr1=='' && index == 1}}">
  21. <image src="{{img}}weapp/coupon_null.png" style="width:322rpx;height:322rpx;"></image>
  22. <text>暂无已失效优惠券~</text>
  23. </view>
  24. <view class="null" wx:if="{{arr2=='' && index == 2}}">
  25. <image src="{{img}}weapp/coupon_null.png" style="width:322rpx;height:322rpx;"></image>
  26. <text>暂无已使用优惠券~</text>
  27. </view>
  28. <view class="coupon_1" wx:if="{{index==0 && arr!=''}}">
  29. <view class="view {{item.type==1 ? 'view1' : item.type==2 ? 'view2' : item.type==3 ? 'view3' :'view4'}}" wx:for="{{arr}}" wx:key="key">
  30. <text class="time" wx:if="{{item.valid_type==1}}">有效期至{{item.valid_end_time}}</text>
  31. <text class="time" wx:if="{{item.valid_type==2}}">有效期至{{item.valid_end_time}}</text>
  32. <text class="time" wx:if="{{item.valid_type==3}}">有效期: {{item.valid_type_name}}</text>
  33. <view class="money" wx:if="{{item.type==1}}">
  34. <text style="font-size:40rpx;font-weight:800;">¥{{item.used_amount}}</text>
  35. <text style="font-size:30rpx;text-decoration:line-through;padding-left:10rpx;">¥{{item.with_amount}}</text>
  36. </view>
  37. <text class="discount" wx:if="{{item.type==4}}">免押金1次</text>
  38. <text class="discount" wx:if="{{item.type==3 }}"><text wx:if="{{item.discount>=10}}">{{item.discount/10}}折</text>
  39. <text wx:if="{{item.discount<10}}">{{item.discount}}折</text></text>
  40. <text class="discount" wx:if="{{item.type==2}}">{{item.used_amount}} 元</text>
  41. <text class="text" wx:if="{{item.type==1}}">满{{item.with_amount}}元减{{item.used_amount}}元</text>
  42. <text class="text" wx:if="{{item.type==2}}">无门槛立减{{item.used_amount}}元</text>
  43. <text class="text" wx:if="{{item.type==3}}">最多可折扣{{item.used_amount}}元</text>
  44. </view>
  45. </view>
  46. <view class="coupon_2" wx:if="{{index==1 && arr1!=''}}">
  47. <view class="view {{item.type==1 ? 'view1' : item.type==2 ? 'view2' : item.type==3 ? 'view3' :'view4'}}" wx:for="{{arr1}}" wx:key="key">
  48. <text class="time" wx:if="{{item.valid_type==1}}">有效期至{{item.valid_end_time}}</text>
  49. <text class="time" wx:if="{{item.valid_type==2}}">有效期至{{item.valid_end_time}}</text>
  50. <text class="time" wx:if="{{item.valid_type==3}}">有效期: {{item.valid_type_name}}</text>
  51. <view class="money" wx:if="{{item.type==1}}">
  52. <text style="font-size:40rpx;font-weight:800;">¥{{item.used_amount}}</text>
  53. <text style="font-size:30rpx;text-decoration:line-through;padding-left:10rpx;">¥{{item.with_amount}}</text>
  54. </view>
  55. <text class="discount" wx:if="{{item.type==4}}">免押金1次</text>
  56. <text class="discount" wx:if="{{item.type==3}}">{{item.discount/10}} 折</text>
  57. <text class="discount" wx:if="{{item.type==2}}">{{item.used_amount}} 元</text>
  58. <text class="text" wx:if="{{item.type==1}}">满{{item.with_amount}}元减{{item.used_amount}}元</text>
  59. <text class="text" wx:if="{{item.type==2}}">无门槛立减{{item.used_amount}}元</text>
  60. <text class="text" wx:if="{{item.type==3}}">最多可折扣{{item.used_amount}}元</text>
  61. </view>
  62. </view>
  63. <view class="coupon_2" wx:if="{{index==2 && arr2!=''}}">
  64. <view class="view {{item.type==1 ? 'view1' : item.type==2 ? 'view2' : item.type==3 ? 'view3' :'view4'}}" wx:for="{{arr2}}" wx:key="key">
  65. <text class="time" wx:if="{{item.valid_type==1}}">有效期至{{item.valid_end_time}}</text>
  66. <text class="time" wx:if="{{item.valid_type==2}}">有效期至{{item.valid_end_time}}</text>
  67. <text class="time" wx:if="{{item.valid_type==3}}">有效期: {{item.valid_type_name}}</text>
  68. <view class="money" wx:if="{{item.type==1}}">
  69. <text style="font-size:40rpx;font-weight:800;">¥{{item.used_amount}}</text>
  70. <text style="font-size:30rpx;text-decoration:line-through;padding-left:10rpx;">¥{{item.with_amount}}</text>
  71. </view>
  72. <text class="discount" wx:if="{{item.type==4}}">免押金1次</text>
  73. <text class="discount" wx:if="{{item.type==3}}">{{item.discount/10}} 折</text>
  74. <text class="discount" wx:if="{{item.type==2}}">{{item.used_amount}} 元</text>
  75. <text class="text" wx:if="{{item.type==1}}">满{{item.with_amount}}元减{{item.used_amount}}元</text>
  76. <text class="text" wx:if="{{item.type==2}}">无门槛立减{{item.used_amount}}元</text>
  77. <text class="text" wx:if="{{item.type==3}}">最多可折扣{{item.used_amount}}元</text>
  78. </view>
  79. </view>
  80. </view>