43 lines
2.0 KiB
Plaintext
43 lines
2.0 KiB
Plaintext
<!--pages/wallet/withdraw.wxml-->
|
|
<view class="account">
|
|
<view class="title">收款账号</view>
|
|
<picker bindchange="bindPickerChange" value="{{value}}" range-key="{{'bankStr'}}" range="{{bankList}}">
|
|
<view class="val">
|
|
<view class="top">
|
|
<view class="top-1">
|
|
<image class="top-icon" src="../images/ic_list_money_back.png" mode="" />
|
|
<view class="name">{{bankName || '暂未添加收款账号'}}</view>
|
|
</view>
|
|
<image class="arrow" src="../images/ic_list_arrow.png" mode="" />
|
|
</view>
|
|
<view class="bottom">{{bankCard}}</view>
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
|
|
<view class="number">
|
|
<view class="title">转出金额</view>
|
|
<view class="tips">¥</view>
|
|
<input value="{{money}}" type="digit" class="number-text" id="money" placeholder="请输入金额" placeholder-class="placeholders" bindinput="getInput" placeholder-style="font-size: 30rpx;font-weight: 400;color:#ccc" />
|
|
</view>
|
|
<view class="text">可提现金额:¥{{total}} <text class="text-btn" bind:tap="totalNum">全部提现</text></view>
|
|
<button hover-class="button" class="confirm-btn {{ money && !disabled? '' :'disable-btn'}}" bind:tap="showModal" disabled="{{money && !disabled? false : true}}" >立即提现</button>
|
|
|
|
|
|
<view class="input-body" wx:if="{{showModal}}">
|
|
<view class="input-modal">
|
|
<view class="modal-headr">提现确认</view>
|
|
<view class="editInput">
|
|
<view class="price">
|
|
<input class="oilInput" type="number" password="{{show? false : true}}" id="password" maxlength="6" value="{{password}}" placeholder="请输入密码" bindinput="getInput"></input>
|
|
</view>
|
|
<view class='unit' catch:tap="changeType">
|
|
<image class="unit-icon" src="{{ show ? '../images/ic_form_hide1.png' :'../images/ic_form_hide2.png'}}" mode="" />
|
|
</view>
|
|
</view>
|
|
<view class="modal-footer oil-footer">
|
|
<view class="modal-footer-btn" bindtap="onCancel">取消</view>
|
|
<view class="modal-footer-btn" bindtap="onConfirm" style="color:#367DF9;">确定</view>
|
|
</view>
|
|
</view>
|
|
</view> |