beefast-mini-merchant/pages/user/info/index.wxml
2025-03-31 20:29:13 +08:00

46 lines
1.7 KiB
Plaintext

<view class="bg">
<nav-bar back home-url="/pages/index/index/index"/>
</view>
<scroll-view scroll-y class="scroll-view" refresher-enabled enhanced show-scrollbar="{{false}}"
bindrefresherrefresh="refreshSummary" refresher-triggered="{{refreshTrigger}}">
<view class="scroll-view-top-margin"></view>
<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/user/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/list/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/user/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>