排队支付小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
2.0 KiB

  1. <block wx:if="{{get_coupon_list&&get_coupon_list.length>0}}">
  2. <view class="get-coupon flex-y-center flex-x-center">
  3. <view class="get-coupon-box" style="overflow: visible">
  4. <image mode="widthFix" class="get-coupon-bg" src="/images/img-get-coupon-bg.png"></image>
  5. <view class="flex-x-center mb-20">
  6. <image src="{{get_coupon_list[0].type==2?'/images/icon-receive-coupon.png':'/images/img-get-coupon-title.png'}}"
  7. style="width: 226rpx;height: 51rpx"></image>
  8. </view>
  9. <scroll-view class="coupon-list" scroll-y="true">
  10. <view wx:for="{{get_coupon_list}}" class="coupon-item flex-y-center">
  11. <image mode="widthFix" src="/images/img-get-coupon-item-bg.png"
  12. style="width: 100%;height: 100%"></image>
  13. <view style="width: 100%">
  14. <view class="flex-row flex-y-center">
  15. <view class="flex-grow-1 flex-row flex-y-bottom">
  16. <view style="line-height: 1">¥</view>
  17. <view style="font-size: 23pt;line-height: .85">{{item.sub_price}}</view>
  18. </view>
  19. <view class="flex-grow-0" style="font-size: 9pt;line-height: 32rpx;">
  20. 满{{item.min_price}}元可用
  21. </view>
  22. </view>
  23. <navigator bindtap="hideGetCoupon" class="use-now" data-url="/pages/list/list">立即使用</navigator>
  24. <view style="font-size: 9pt">{{item.desc}}</view>
  25. </view>
  26. </view>
  27. </scroll-view>
  28. <view class='flex-x-center'>
  29. <image src='/images/icon-close3.png' style='width:100rpx;height:100rpx;'
  30. bindtap='closeCouponBox'></image>
  31. </view>
  32. </view>
  33. </view>
  34. </block>