37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
<view class="page-container amount">
|
|
<view class="head">
|
|
<view class="key">提现金额</view>
|
|
<view class="value">24小时到账</view>
|
|
</view>
|
|
<view class="input-area">
|
|
<input class="input" placeholder-class="input-placeholder"
|
|
placeholder="请输入提现金额" type="digit" focus="{{inputFocus}}"
|
|
value="{{amount}}" bindinput="amountInput" bindblur="amountBlur"/>
|
|
<view class="error">{{amountMessage}}</view>
|
|
</view>
|
|
<view class="bottom">
|
|
<view class="key">账户余额:{{summary.balance}}</view>
|
|
<view class="value" bind:tap="setAmountAll">全部提现</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="page-container banks">
|
|
<view class="head">提现方式</view>
|
|
<view class="spliter"></view>
|
|
<radio-group bindchange="bankChange" class="bank-list">
|
|
<label class="item" wx:for="{{bankList}}" wx:key="index">
|
|
<image class="icon" src="/assets/icon/card.png"/>
|
|
<view class="name">{{item.bank_name}}({{item.endNumber}})</view>
|
|
<radio class="checkbox" value="{{item.id}}" checked="{{index==0}}"/>
|
|
</label>
|
|
|
|
<view class="item" bind:tap="navToAddCard">
|
|
<view class="icon plus">
|
|
<image src="/assets/icon/plus.png" class="plus"/>
|
|
</view>
|
|
<view class="name">添加银行卡</view>
|
|
</view>
|
|
</radio-group>
|
|
</view>
|
|
|
|
<button type="primary" class="widthdraw-btn" bind:tap="widthdraw">立即提现</button> |