index.wxml 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <view class="voucherBox" catchtouchmove='true' wx:if="{{state}}">
  2. <view class="voucher">
  3. <view class="body">
  4. <view class="title" style="margin-top: 24rpx;">
  5. 恭喜您获得{{preferential/100}}元抵用卷
  6. </view>
  7. <view class="title" style="margin:26rpx 0rpx 50rpx;">
  8. 快去使用
  9. </view>
  10. <image src="/static/hongbao.png" class="hongbao" />
  11. <view class="info">
  12. <view class="row">
  13. <view class="row-left">现价:{{(type=='7'?productVip.price-preferential:productNum.price-preferential)/100}}元
  14. </view>
  15. <view class="row-right">
  16. <image src="/static/hongbao.png" class="hongbao-mini" />-{{preferential/100}}元
  17. </view>
  18. </view>
  19. <view class="row" style="margin-top: 14rpx;">
  20. <view class="row-left oldMoney">原价:{{(type=='7'?productVip.price:productNum.price)/100}}元</view>
  21. <view class="row-right newMoney">
  22. 实际支付{{(type=='7'?productVip.price-preferential:productNum.price-preferential)/100}}元
  23. </view>
  24. </view>
  25. </view>
  26. <view class="btn" catchtap="getVoucher">{{voucherType?'立即使用':'领取使用'}}</view>
  27. <view class="tips">领取后在24小时内使用,过期作废</view>
  28. </view>
  29. <image src="/static/lollipop.png" class="close" catchtap="close" />
  30. </view>
  31. </view>