27 lines
989 B
Plaintext
27 lines
989 B
Plaintext
<!--pages/withdrawal/index.wxml-->
|
|
<header></header>
|
|
<view class='container'>
|
|
<view class='box'>
|
|
<view class='cell'>
|
|
<text>持卡人</text>
|
|
<input value="{{cardholder}}" placeholder='请输入持卡人' bindinput='cardholderInput'></input>
|
|
</view>
|
|
<view class='cell'>
|
|
<text>银行</text>
|
|
<input value="{{bank}}" placeholder='请输入开户银行' bindinput='bankInput'></input>
|
|
</view>
|
|
<view class='cell unLine'>
|
|
<text>银行卡卡号</text>
|
|
<input placeholder='请输入银行卡卡号' type='number' bindinput='bankCardInput'></input>
|
|
</view>
|
|
</view>
|
|
<view class='box bottom'>
|
|
<view class='label'>提现金额</view>
|
|
<view class='input-box'>
|
|
<text style='margin-top: 10rpx'>¥</text>
|
|
<input bindinput='moneyInput' type='digit'></input>
|
|
</view>
|
|
<text class='message'>可提现余额为 {{money}}</text>
|
|
<view class='btn-box' bindtap='withdrawalClick'>确认提现</view>
|
|
</view>
|
|
</view> |