pay-order.wxml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <scroll-view scroll-y class="bg-scroll-view">
  2. <view style="height: 16rpx;"></view>
  3. <view class="header-bg">
  4. <view class="header">
  5. <text>购买月份:{{head[0]}}</text>
  6. <text>{{head[1]}}</text>
  7. </view>
  8. <view class="list">
  9. <text>{{list.l}}</text>
  10. <text>{{list.r}}</text>
  11. </view>
  12. <image src="../../../../icon/home/order_separate.png"></image>
  13. <view class="total">
  14. <text>共计</text>
  15. <text>¥{{total}}</text>
  16. </view>
  17. </view>
  18. <view class="discount" bindtap="discountChoose">
  19. <text>优惠券</text>
  20. <text hidden="{{discount.count == 0}}">{{discount.count}}张可用</text>
  21. <text>{{discount.status}}</text>
  22. <image src="../../../../icon/public/arrow_right.png"></image>
  23. </view>
  24. <view class="scroll-view-bottom-view{{adapter.suffix}}"></view>
  25. </scroll-view>
  26. <view class="bottom-view{{adapter.suffix}}">
  27. <view bindtap="payLaterAction">
  28. <text>提交订单,稍后支付</text>
  29. <image src="../../../../icon/public/arrow_right.png"></image>
  30. </view>
  31. <view></view>
  32. <view>
  33. <view>
  34. <text>¥</text>
  35. <text>{{pay.i}}</text>
  36. <text>{{pay.d}}</text>
  37. </view>
  38. <text hidden="{{discount.fee == 0}}">(已减{{discount.fee}}元)</text>
  39. <view bindtap="payAction">确认支付</view>
  40. </view>
  41. </view>