quickBuy.swan 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <view class="container">
  2. <view class="banner">
  3. <view>
  4. <text>{{ui.t}}</text>
  5. <text>省去繁琐流程,购买更快捷</text>
  6. </view>
  7. <image src="../../../icon/public/customer_header_{{ui.icon}}.png"></image>
  8. </view>
  9. <view class="content">
  10. <view class="detail">
  11. <view s-for="ui.item">
  12. <text>{{item.t}}</text>
  13. <text>{{item.v}}</text>
  14. </view>
  15. </view>
  16. <view class="time">
  17. <view class="month" bindtap="chooseDate">
  18. <text>续缴月份</text>
  19. <view>
  20. <text>{{month}}月份</text>
  21. <image src="../../../icon/public/arrow_right.png"></image>
  22. </view>
  23. </view>
  24. <view class="salary" s-if="{{ needSalary&&type==0}}">
  25. <view class="line"></view>
  26. <view>
  27. <text>是否在职</text>
  28. <image src="../.././../icon/home/new_customer_info.png" bindtap="openJobModal"></image>
  29. </view>
  30. <switch color="#4CD964" id="work" bindchange="switchAction" checked="{{salarySwitch}}"/>
  31. </view>
  32. <view class="inputSalary" s-if="{{inputSalary&&type==0}}">
  33. <view class="line"></view>
  34. <text>社保流水</text>
  35. <view class="inputBox">
  36. <input placeholder="{{salary}}元-5000元" bindinput="inputAction"/>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="buyFund" s-if="{{fundSwitch}}">
  41. <text>是否同时购买公积金</text>
  42. <switch color="#4CD964" id="fund" bindchange="switchAction" checked="{{buyFund}}" />
  43. </view>
  44. <view class="buySheBao" s-if="{{sheBaoSwitch}}">
  45. <text>是否同时购买社保</text>
  46. <switch color="#4CD964" id="shebao" bindchange="switchAction" checked="{{buySheBao}}" />
  47. </view>
  48. <view class="salary" s-if="{{ needSalary&&type==2&&buySheBao}}">
  49. <view class="line"></view>
  50. <view>
  51. <text>是否在职</text>
  52. <image src="../.././../icon/home/new_customer_info.png" bindtap="openJobModal"></image>
  53. </view>
  54. <switch color="#4CD964" id="work" bindchange="switchAction" checked="{{salarySwitch}}"/>
  55. </view>
  56. <view class="inputSalary" s-if="{{inputSalary&&type==2&&buySheBao}}">
  57. <view class="line"></view>
  58. <text>社保流水</text>
  59. <view class="inputBox">
  60. <input placeholder="{{salary}}元-5000元" bindinput="inputAction"/>
  61. </view>
  62. </view>
  63. <view class="btn">
  64. <view s-if="{{!(data.min_months>1)}}" id="1" bindtap="btnAction">续一个月</view>
  65. <view s-if="{{!(data.min_months>2)}}" id="2" bindtap="btnAction">续两个月</view>
  66. <view s-if="{{!(data.min_months>3)}}" id="3" bindtap="btnAction">续三个月</view>
  67. </view>
  68. </view>
  69. </view>
  70. <view class="modal" s-if="{{modalStatus}}">
  71. <view bindtap="closeJobModal"></view>
  72. <view class="detail" animation="{{animationData}}">
  73. <view class="header">
  74. <view>
  75. <view></view>
  76. <text>是否在职</text>
  77. </view>
  78. <image src="../../../../icon/public/close.png" bindtap="closeJobModal"></image>
  79. </view>
  80. <scroll-view scroll-y class="box {{suffix}}" animation="{{modalAnimation}}">
  81. <view class="item">
  82. <text class="blue">在职的用户</text>
  83. <text class="black">在职的 (不限城市) 无需在平台缴纳社保流水。</text>
  84. <text class="blue">不在职的用户</text>
  85. <text class="black">不在职的需要在平台缴纳社保流水,以提供资金流水记录。</text>
  86. <text class="black" style="margin:34rpx 0 100rpx">1. 流水费与社保费分开,生成独立的流水订单,成功支付后,逢周三退还至参保人银行卡。
  87. 2. 流水不会做个税申报处理。
  88. 3. 支付通道会产生35元手续费。</text>
  89. </view>
  90. <view class="line"></view>
  91. <view class="item">
  92. <text style="margin-top:40rpx">请如实填写您现在是否在职,若不实填写导致后续办理社保相关业务有问题,平台不负责哦。</text>
  93. </view>
  94. </scroll-view>
  95. </view>
  96. </view>