pay-success.swan 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <view class="container">
  2. <view class="success">
  3. <image src="../../../icon/home/success.png"></image>
  4. <text>恭喜您!支付成功</text>
  5. <view class="call">服务专员将会在24小时内为您服务
  6. 如有问题请致电400-881-9211</view>
  7. </view>
  8. <view s-if="{{type=='survey'}}" class="survey">
  9. <view class="btn" bindtap="showModal">填问卷拿福利</view>
  10. </view>
  11. <view s-elif="{{type=='share'}}" class="share" bindtap="shareAction">分享给好友获优惠券</view>
  12. <view s-elif="{{type=='repair'}}" class="repair">
  13. <view class="empty"></view>
  14. <text>亲,你还有费用未补缴哦!</text>
  15. <text>为确保能正常缴费,请尽快补缴差额</text>
  16. <view class="btn" bindtap="repair">立即补缴</view>
  17. <text bindtap="goMypage">稍后补缴</text>
  18. </view>
  19. <view s-elif="{{type=='salary'}}" class="salary">
  20. <view class="empty"></view>
  21. <text>还有社保流水费待支付</text>
  22. <text>为确保能正常参保,请及时支付社保流水以便产生流水记录,
  23. 支付后由平台返还至你的银行账户</text>
  24. <view class="btn" bindtap="salary">立即支付</view>
  25. </view>
  26. <view s-elif="{{type=='addCard'}}" class="addCard">
  27. <view class="empty"></view>
  28. <text>离返还流水费还差一步</text>
  29. <text>请及时添加银行卡</text>
  30. <text>已缴纳的社保流水费用,将返还于添加的银行卡号上</text>
  31. <view class="btn" bindtap="addCard">立即添加</view>
  32. </view>
  33. </view>
  34. <view class="modal" s-if="modalStatus">
  35. <view bindtap="hiddenModal"></view>
  36. <view class="detail" animation='{{animationData}}'>
  37. <view class="header">
  38. <view>
  39. <view></view>
  40. <text>首单有奖问卷调查</text>
  41. </view>
  42. <image src="../../../icon/public/close.png" bindtap="hiddenModal"></image>
  43. </view>
  44. <scroll-view class="content" scroll-left="{{scorllLeft}}" scroll-with-animation>
  45. <view class="scroll" >
  46. <view class="topic{{suffix}}" s-for="item,index in topic">
  47. <view class="question">
  48. <text>{{index+1}}.</text>
  49. <text>{{item.q}}</text>
  50. <text>{{item.t}}</text>
  51. </view>
  52. <view class="answer" s-for="item,index in item.a" bindtap="choose" data-index="{{index}}">
  53. <image src="../../../icon/public/filter_{{seleted[index]?'s':'n'}}.png"></image>
  54. <view>{{item}}</view>
  55. </view>
  56. <view class="btnBox">
  57. <view class="btn {{status?'':'disable'}}" bindtap="next" id="{{index}}">{{index+1}}/{{topic.length}}{{item.btn}}</view>
  58. </view>
  59. </view>
  60. <view class="result{{suffix}}">
  61. <view class="top">
  62. <image src="../../../icon/home/success.png"></image>
  63. <view>感谢参与有奖问卷调查,您的反馈让我们能够为你带来更好的使用体验!</view>
  64. </view>
  65. <view class="middle">恭喜你,获得一张专享优惠券,可用于下次下单时抵扣</view>
  66. <view class="bottom">
  67. <view class="left">
  68. <view>
  69. <text>¥</text>
  70. <text>{{discount.price}}</text>
  71. </view>
  72. <text>{{discount.p}}</text>
  73. </view>
  74. <view class="right">
  75. <view class="desc">
  76. <text>{{discount.name}}</text>
  77. <view>
  78. <text>{{discount.decription}}</text>
  79. <text>{{discount.end_time}}</text>
  80. </view>
  81. </view>
  82. <view class="use">立即使用</view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. </scroll-view>
  88. </view>
  89. </view>