Files
CompanyProject/衣莎项目/源码/YiShaXiYi/user/cashWithdrawal/cashWithdrawal.wxml
2024-09-27 01:32:49 +08:00

29 lines
1.3 KiB
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.

<!-- 头部 -->
<nav-bar isBack="{{isBack}}" pageTitle="{{pageTitle}}" system="{{system}}"></nav-bar>
<!-- user/cashWithdrawal/cashWithdrawal.wxml -->
<view class="cashWithdrawal">
<form report-submit bindsubmit="withDraw">
<view class="cash_Input pd30 mt20">
<view class="cash_Input_t">提现金额</view>
<view class="dis-flex cash_Input_text mt10">
<view class="cash_Input_m">¥</view>
<view class="cash_Input_money flex1 dis-flex">
<input name="money" class="flex1" type="number" maxlength="6" />
</view>
</view>
<view class="dis-flex mt20">
<view class="flex1 cash_Input_p1">可提现金额:{{distribution_money}}元</view>
<navigator url="/user/withdrawalsRecord/withdrawalsRecord" class="cash_Input_p2">
提现记录
</navigator>
</view>
</view>
<button form-type="submit" class="sub">确认提现</button>
</form>
<view class="cash_tips pd30">
<view>温馨提示:</view>
<view>最低提现金额为100元,提现后收益会自动转入您的微信账户中。</view>
</view>
</view>
<!-- toasta提示 -->
<i-toast id="toast" />