index.wxml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!--index.wxml-->
  2. <view class="wrap">
  3. <view class="coupon_list">
  4. <view class="coupon_item" style="background-image: url({{ couponBg }})" wx:for="{{ dataList }}" wx:key="index">
  5. <view class="item_l" wx:if="{{ item.coupon.type == 1 }}">
  6. <view class="price"><text class="unit">¥</text>{{ item.coupon.price }}</view>
  7. <view class="tips">满{{ item.coupon.base_price }}元可用</view>
  8. </view>
  9. <view class="item_l" wx:if="{{ item.coupon.type == 2 }}">
  10. <view class="price"><text class="unit">¥</text>{{ item.coupon.price }}</view>
  11. <view class="tips">无门槛</view>
  12. </view>
  13. <view class="item_l" wx:if="{{ item.coupon.type == 3 }}">
  14. <view class="price">{{ item.coupon.discount }}折</view>
  15. </view>
  16. <view class="item_r">
  17. <view class="item_r_l">
  18. <view class="quan_name">{{ item.coupon.title }}</view>
  19. <!-- <view class="quan_time">有效期至2021-12-31</view> -->
  20. </view>
  21. </view>
  22. <view class="item_status" bind:tap="onTakeCoupon" data-id="{{ item.id }}">领取</view>
  23. </view>
  24. <!-- <view class="coupon_item unable" style="background-image: url({{ couponBg }})">
  25. <view class="item_l">
  26. <view class="price"><text class="unit">¥</text>15</view>
  27. <view class="tips">无门槛</view>
  28. </view>
  29. <view class="item_r">
  30. <view class="item_r_l">
  31. <view class="quan_name">金额优惠券</view>
  32. <view class="quan_time">有效期至2021-12-31</view>
  33. </view>
  34. </view>
  35. <view class="item_status">已使用</view>
  36. </view> -->
  37. </view>
  38. </view>
  39. <!-- loading -->
  40. <!-- <van-overlay show="{{ loading }}" z-index="100">
  41. <van-loading custom-class="custom_loading" />
  42. </van-overlay> -->
  43. <van-toast id="van-toast" />