first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<!-- 头部 -->
<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" />