Files
cardtest/pages/withdrawal_form/withdrawal_form.wxml
2021-07-20 09:01:00 +08:00

22 lines
919 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>