123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <view class="container">
- <view class="banner">
- <view>
- <text>{{ui.t}}</text>
- <text>省去繁琐流程,购买更快捷</text>
- </view>
- <image src="../../../icon/public/customer_header_{{ui.icon}}.png"></image>
- </view>
- <view class="content">
- <view class="detail">
- <view s-for="ui.item">
- <text>{{item.t}}</text>
- <text>{{item.v}}</text>
- </view>
- </view>
- <view class="time">
- <view class="month" bindtap="chooseDate">
- <text>续缴月份</text>
- <view>
- <text>{{month}}月份</text>
- <image src="../../../icon/public/arrow_right.png"></image>
- </view>
- </view>
- <view class="salary" s-if="{{ needSalary&&type==0}}">
- <view class="line"></view>
- <view>
- <text>是否在职</text>
- <image src="../.././../icon/home/new_customer_info.png" bindtap="openJobModal"></image>
- </view>
- <switch color="#4CD964" id="work" bindchange="switchAction" checked="{{salarySwitch}}"/>
- </view>
- <view class="inputSalary" s-if="{{inputSalary&&type==0}}">
- <view class="line"></view>
- <text>社保流水</text>
- <view class="inputBox">
- <input placeholder="{{salary}}元-5000元" bindinput="inputAction"/>
- </view>
- </view>
- </view>
- <view class="buyFund" s-if="{{fundSwitch}}">
- <text>是否同时购买公积金</text>
- <switch color="#4CD964" id="fund" bindchange="switchAction" checked="{{buyFund}}" />
- </view>
- <view class="buySheBao" s-if="{{sheBaoSwitch}}">
- <text>是否同时购买社保</text>
- <switch color="#4CD964" id="shebao" bindchange="switchAction" checked="{{buySheBao}}" />
- </view>
- <view class="salary" s-if="{{ needSalary&&type==2&&buySheBao}}">
- <view class="line"></view>
- <view>
- <text>是否在职</text>
- <image src="../.././../icon/home/new_customer_info.png" bindtap="openJobModal"></image>
- </view>
- <switch color="#4CD964" id="work" bindchange="switchAction" checked="{{salarySwitch}}"/>
- </view>
- <view class="inputSalary" s-if="{{inputSalary&&type==2&&buySheBao}}">
- <view class="line"></view>
- <text>社保流水</text>
- <view class="inputBox">
- <input placeholder="{{salary}}元-5000元" bindinput="inputAction"/>
- </view>
- </view>
- <view class="btn">
- <view s-if="{{!(data.min_months>1)}}" id="1" bindtap="btnAction">续一个月</view>
- <view s-if="{{!(data.min_months>2)}}" id="2" bindtap="btnAction">续两个月</view>
- <view s-if="{{!(data.min_months>3)}}" id="3" bindtap="btnAction">续三个月</view>
- </view>
- </view>
- </view>
- <view class="modal" s-if="{{modalStatus}}">
- <view bindtap="closeJobModal"></view>
- <view class="detail" animation="{{animationData}}">
- <view class="header">
- <view>
- <view></view>
- <text>是否在职</text>
- </view>
- <image src="../../../../icon/public/close.png" bindtap="closeJobModal"></image>
- </view>
- <scroll-view scroll-y class="box {{suffix}}" animation="{{modalAnimation}}">
- <view class="item">
- <text class="blue">在职的用户</text>
- <text class="black">在职的 (不限城市) 无需在平台缴纳社保流水。</text>
- <text class="blue">不在职的用户</text>
- <text class="black">不在职的需要在平台缴纳社保流水,以提供资金流水记录。</text>
- <text class="black" style="margin:34rpx 0 100rpx">1. 流水费与社保费分开,生成独立的流水订单,成功支付后,逢周三退还至参保人银行卡。
- 2. 流水不会做个税申报处理。
- 3. 支付通道会产生35元手续费。</text>
- </view>
- <view class="line"></view>
- <view class="item">
- <text style="margin-top:40rpx">请如实填写您现在是否在职,若不实填写导致后续办理社保相关业务有问题,平台不负责哦。</text>
- </view>
- </scroll-view>
- </view>
- </view>
|