75 lines
3.0 KiB
Plaintext
75 lines
3.0 KiB
Plaintext
<!-- 提现页面 -->
|
||
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
||
<view class="container">
|
||
<view class="top">
|
||
<view class="txt_title">结算银行卡</view>
|
||
<view class="rule">提现规则<van-icon name="warning-o" color="#FF9800" /></view>
|
||
</view>
|
||
<view class="bankcard" wx:if="{{!skeleton_loading}}">
|
||
<view class="bankcard_icon">
|
||
<van-image custom-style="" src="{{bank_icon_path}}" fit="heightFix" height="50rpx" aria-label="role" />
|
||
</view>
|
||
<view class="bankcard_info">
|
||
<view class="bankcard_info_top">{{realname}}<text style="margin-left: 20rpx; font-size: 28rpx;color: #999999;">{{bank_name}}</text></view>
|
||
<view class="bankcard_info_bottom">{{bank_card_code_mask}}</view>
|
||
</view>
|
||
</view>
|
||
<view class="bankcard_loading" wx:if="{{skeleton_loading}}">
|
||
<t-skeleton theme="text" row-col="{{[{width: '30%'},{width: '80%'}]}}" animation="gradient" loading="{{skeleton_loading}}" />
|
||
</view>
|
||
|
||
<view class="cash" wx:if="{{!skeleton_loading}}">
|
||
<view class="cash_top">
|
||
<view class="cash_left">
|
||
<view class="cash_left_title">提现金额(元)</view>
|
||
<view class="cash_num">
|
||
<view>
|
||
<text style="font-size: 42rpx;">¥</text>{{withdrawal_amount}}
|
||
</view>
|
||
</view>
|
||
<view class="shui">扣除个人所得税:
|
||
<text style="color: red;">{{income_tax}}元</text>
|
||
</view>
|
||
</view>
|
||
<view class="cash_right">
|
||
<navigator url="/Pages/yishi/wenzhenorderV2/index" open-type="navigate" hover-class="other-navigator-hover">
|
||
<van-button custom-style="text-align: center;border-radius: 10rpx;padding: 20rpx 50rpx;" color="linear-gradient(310deg, #FF931A 0%, #FF931A 0%, #FCB75D 100%);">
|
||
查看订单
|
||
</van-button>
|
||
</navigator>
|
||
</view>
|
||
</view>
|
||
<view class="cash_bottom">
|
||
<navigator url="/Pages/yishi/cashrecord/index" open-type="navigate" hover-class="other-navigator-hover">
|
||
提现记录 >
|
||
</navigator>
|
||
</view>
|
||
</view>
|
||
<view class="cash_loading" wx:if="{{skeleton_loading}}">
|
||
<t-skeleton theme="text" row-col="{{[{width: '30%'},{width: '80%'},{width: '50%'},{width: '30%'}]}}" animation="gradient" loading="{{skeleton_loading}}" />
|
||
</view>
|
||
|
||
<!-- <view class="note">
|
||
<text>
|
||
说明:1、每月只可提取一次,提现金额大于300元才可提现,限额1万元;
|
||
2、平台会在24小时内自动结算至您绑定的银行卡内,请注意查收银行信息;
|
||
3、平台代扣个人所得税,根据公式:
|
||
</text>
|
||
</view> -->
|
||
|
||
<view class="bottom">
|
||
<van-button bind:click="postDoctorWithdrawal" disabled="{{order_inquiry_ids.length == 0}}" custom-style="border-radius: 10rpx;font-size: 30rpx;" block color="#3CC7C0">提取</van-button>
|
||
<view class="kefu" bindtap="contactKeFu">
|
||
<text>联系客服</text>
|
||
</view>
|
||
</view>
|
||
|
||
<van-dialog
|
||
title="立即联系客服"
|
||
show="{{ contactKeFu }}"
|
||
show-cancel-button
|
||
confirm-button-color="#3CC7C0"
|
||
confirm-button-open-type="contact"
|
||
/>
|
||
</view>
|