[添加转账,提现等新功能]

This commit is contained in:
zhangmanman
2021-07-20 09:01:00 +08:00
parent bc38362878
commit c661dd0e16
75 changed files with 1759 additions and 130 deletions

View File

@@ -0,0 +1,22 @@
<view class="withdrawal">
<image class="withdrawal-img" src="/static/img/withdrawal_icon.png"></image>
<view class="withdrawal-price">{{balance}}</view>
<view class="withdrawal-name">(我的账户余额)</view>
</view>
<view class="withdrawalTips">
当前现金金额低于2元不可提现每次提现的额度不低于2元提现手续费按照到账周期收取
</view>
<view class="withdrawalForm">
<form bindsubmit="formSubmit">
<view class="withdrawalForm-label">
<view class="withdrawalForm-label-name">提现金额</view>
<input type="number" name="amount" placeholder="请输入提现金额" />
</view>
<view class="withdrawalForm-label">
提现费用收取,手续费{{tax}}%
</view>
<button class="withdrawalForm-btn" formType="submit" disabled="{{disabled}}">立即提现</button>
</form>
</view>