card-mini/packagecard/purse/takecash.wxml
2021-09-06 09:18:46 +08:00

30 lines
1.2 KiB
Plaintext

<cu-custom isBack="{{true}}">
<view slot="content">立即提现</view>
</cu-custom>
<view class="page-box" style="padding: 0rpx;">
<view class="content-box">
<view>
<view class="money">
<text style="font-size: 80rpx;line-height: 80rpx;">¥</text>
<text
style="font-size: 80rpx;line-height: 80rpx;margin-left: 15rpx;">{{accountInfo.accountMoney/100}}</text>
</view>
<view class="hint">最低提现金额1.00元</view>
</view>
</view>
<view class="cash-box">
<view class="title-box">
<view class="title">提现金额</view>
<view catchtap="takeAll">全部提现</view>
</view>
<view class="input-box">
<text style="text-align: center;">¥</text>
<input type="digit" value="{{takeValue}}" bindinput="inputWatch" />
</view>
</view>
<text class="cuIcon-edit text-white" style="font-size: 60rpx;position: absolute;top: 150rpx;right: 30rpx;"
bindtap="toRecord"></text>
</view>
<view class="foot" style="padding: 15rpx;">
<button class="cu-btn bg-blue" style="width:100%" bindtap="doCash">申请提现</button>
</view>