You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.5 KiB
31 lines
1.5 KiB
<!--pages/withdrawal/checkout/index.wxml-->
|
|
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">申请提现</view>
|
|
</cu-custom>
|
|
|
|
<view class=" bg-white padding" style="margin-top:24rpx">
|
|
<text class="text-df text-bold text-black" bindtap="banlanceDetails">提现金额</text>
|
|
<view class="cu-form-group" style="border-bottom: 1px solid #f3f3f3;margin-top:24rpx;padding: 2rpx 0rpx">
|
|
<view><text style="font-size:50rpx;font-weight: 600; color:black">¥</text></view>
|
|
<input type="digit" style="font-size:45rpx;" value="{{expendMoney}}" bindinput="bindAndSet" placeholder="请输入金额"></input>
|
|
</view>
|
|
<view style="margin-top:18rpx;margin-bottom:12rpx">
|
|
<text class="text-sm" bindtap="banlanceDetails" >账户余额¥{{formate.numberFormat2(xsaccountMoney)}}</text>
|
|
<text class="text-sm text-blue" style="margin-left:30rpx" bindtap="allExpend">全部提现</text>
|
|
</view>
|
|
|
|
<view class="flex flex-justify" style="margin-top:36rpx;margin-bottom:12rpx" bindtap="chooseCard">
|
|
<view class="text-df text-bold">到账银行卡</view>
|
|
<view class="text-df text-bold">{{chooseBankCard ? chooseBankCard.cardName: '添加银行卡'}}</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="flex flex-direction" style="padding: 48rpx 32rpx">
|
|
<wux-button block type="positive" bind:click="checkoutMoney">提现</wux-button>
|
|
</view>
|
|
|
|
<picker-view id="picker-view" bindcustomevent="onPickerChange"></picker-view>
|
|
<wux-keyboard id="wux-keyboard" />
|
|
<wux-dialog id="wux-dialog" />
|