pay.swan 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <view class="content{{suffix}}">
  2. <view class="detail">
  3. <view class="top">
  4. <text>购买月份:{{date}}</text>
  5. <text style="font-size: 28rpx">{{name}} {{idcard}}</text>
  6. <text style="font-size: 28rpx">{{res.city}}/{{res.hukou}}</text>
  7. </view>
  8. <view class="bottom">
  9. <view><text>购买时长</text><text>{{res.nums}}个月</text></view>
  10. <view s-if="{{shebao!=0}}"><text>社保费用</text><text>¥{{shebao}}</text></view>
  11. <view s-if="{{fund!=0}}"><text>公积金费用</text><text>¥{{fund}}</text></view>
  12. <view s-if="newCard"><text>社保卡</text><text>¥{{card_charge}}/一次性</text></view>
  13. <view class="service"><text>服务费</text><text>¥{{service}}</text></view>
  14. <view class="line"><image src="../.././../icon/home/order_separate.png"></image></view>
  15. <view class="totalPrice">
  16. <text>共计</text>
  17. <text>¥{{totalPrice}}</text>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="cheap" bindtap="goCheap">
  22. <view><text>优惠券</text><text class="red" s-if="{{cheapCount}}">{{cheapCount}}张可用</text></view>
  23. <view><text>{{cheapStatus}}</text><image class="arrow" src="../../../icon/public/arrow_right.png"></image></view>
  24. </view>
  25. </view>
  26. <view class="footer{{suffix}}">
  27. <view class="wrap" bindtap="createPayLaterOrder">
  28. <text>提交订单,稍后支付</text>
  29. <image src="../../../icon/public/arrow_right.png" class="arrow"></image>
  30. </view>
  31. <view class="wrap">
  32. <view>
  33. <view class="totalPrice">
  34. <text>¥{{totalPriceArr[0]}}</text>
  35. <text>{{totalPriceArr[1]}}</text>
  36. <text s-if="{{cheapMoney}}">(已减{{cheapMoney}}元)</text>
  37. </view>
  38. </view>
  39. <view class="btn" bindtap="payAction">确认支付</view>
  40. </view>
  41. </view>