12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <view class="container">
- <view class="success">
- <image src="../../../icon/home/success.png"></image>
- <text>恭喜您!支付成功</text>
- <view class="call">服务专员将会在24小时内为您服务
- 如有问题请致电400-881-9211</view>
- </view>
- <view s-if="{{type=='survey'}}" class="survey">
- <view class="btn" bindtap="showModal">填问卷拿福利</view>
- </view>
- <view s-elif="{{type=='share'}}" class="share" bindtap="shareAction">分享给好友获优惠券</view>
- <view s-elif="{{type=='repair'}}" class="repair">
- <view class="empty"></view>
- <text>亲,你还有费用未补缴哦!</text>
- <text>为确保能正常缴费,请尽快补缴差额</text>
- <view class="btn" bindtap="repair">立即补缴</view>
- <text bindtap="goMypage">稍后补缴</text>
- </view>
- <view s-elif="{{type=='salary'}}" class="salary">
- <view class="empty"></view>
- <text>还有社保流水费待支付</text>
- <text>为确保能正常参保,请及时支付社保流水以便产生流水记录,
- 支付后由平台返还至你的银行账户</text>
- <view class="btn" bindtap="salary">立即支付</view>
- </view>
- <view s-elif="{{type=='addCard'}}" class="addCard">
- <view class="empty"></view>
- <text>离返还流水费还差一步</text>
- <text>请及时添加银行卡</text>
- <text>已缴纳的社保流水费用,将返还于添加的银行卡号上</text>
- <view class="btn" bindtap="addCard">立即添加</view>
- </view>
- </view>
- <view class="modal" s-if="modalStatus">
- <view bindtap="hiddenModal"></view>
- <view class="detail" animation='{{animationData}}'>
- <view class="header">
- <view>
- <view></view>
- <text>首单有奖问卷调查</text>
- </view>
- <image src="../../../icon/public/close.png" bindtap="hiddenModal"></image>
- </view>
- <scroll-view class="content" scroll-left="{{scorllLeft}}" scroll-with-animation>
- <view class="scroll" >
- <view class="topic{{suffix}}" s-for="item,index in topic">
- <view class="question">
- <text>{{index+1}}.</text>
- <text>{{item.q}}</text>
- <text>{{item.t}}</text>
- </view>
- <view class="answer" s-for="item,index in item.a" bindtap="choose" data-index="{{index}}">
- <image src="../../../icon/public/filter_{{seleted[index]?'s':'n'}}.png"></image>
- <view>{{item}}</view>
- </view>
- <view class="btnBox">
- <view class="btn {{status?'':'disable'}}" bindtap="next" id="{{index}}">{{index+1}}/{{topic.length}}{{item.btn}}</view>
- </view>
- </view>
- <view class="result{{suffix}}">
- <view class="top">
- <image src="../../../icon/home/success.png"></image>
- <view>感谢参与有奖问卷调查,您的反馈让我们能够为你带来更好的使用体验!</view>
- </view>
- <view class="middle">恭喜你,获得一张专享优惠券,可用于下次下单时抵扣</view>
- <view class="bottom">
- <view class="left">
- <view>
- <text>¥</text>
- <text>{{discount.price}}</text>
- </view>
- <text>{{discount.p}}</text>
- </view>
- <view class="right">
- <view class="desc">
- <text>{{discount.name}}</text>
- <view>
- <text>{{discount.decription}}</text>
- <text>{{discount.end_time}}</text>
- </view>
- </view>
- <view class="use">立即使用</view>
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
|