beefast-mini-deliveryman/pages/user/info/index.wxml
2025-02-27 22:15:09 +08:00

45 lines
1.6 KiB
Plaintext

<view class="bg">
<nav-bar back black/>
</view>
<scroll-view scroll-y class="scroll-view" refresher-enabled
bindrefresherrefresh="refreshSummary" refresher-triggered="{{refreshTrigger}}">
<view class="page-container user-info">
<view class="title">账户余额 (元)</view>
<view class="_money">{{summary.balance}}</view>
<view class="today">今日收益(元) {{summary.today_income}}</view>
<navigator url="/pages/withdraw/index/index">
<button class="button" type="primary" disabled="{{summary.balance==0}}">提现</button>
</navigator>
</view>
<view class="cells cells-access">
<navigator url="/pages/user/income/index" class="cell" hover-class="cell-active">
<view class="cell-bd invite-cell">
<view>交易明细</view>
</view>
<view class="cell-ft"></view>
</navigator>
<navigator url="/pages/withdraw/list/index" class="cell" hover-class="cell-active">
<view class="cell-bd">
<view>提现记录</view>
</view>
<view class="cell-ft"></view>
</navigator>
<navigator url="/pages/user/rnAuth/index" class="cell" hover-class="cell-active">
<view class="cell-bd">
<view>实名认证</view>
</view>
<view class="cell-ft">
<label class="main-color">{{isAuth?'已认证':'未认证'}}</label>
</view>
</navigator>
<navigator url="/pages/user/bank/index/index" class="cell" hover-class="cell-active">
<view class="cell-bd">
<view>银行卡管理</view>
</view>
<view class="cell-ft"></view>
</navigator>
</view>
</scroll-view>