65 lines
2.7 KiB
Plaintext
65 lines
2.7 KiB
Plaintext
<view class="top">
|
|
<view class="topSee">
|
|
<view class="topSee-name">账户余额(元)</view>
|
|
<view class="topSee-number">{{account.balance}}</view>
|
|
</view>
|
|
<view class="topBtn" bind:tap="onWithdraw">提现</view>
|
|
</view>
|
|
|
|
<!-- 账户统计 -->
|
|
<view class="tab">
|
|
<view class="tab-item">
|
|
<view class="tab-name">待发放(元)</view>
|
|
<view class="tab-number">{{account.frozen}}</view>
|
|
</view>
|
|
<view class="tab-item">
|
|
<view class="tab-name">总收入(元)</view>
|
|
<view class="tab-number">{{account.all_in}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 进图条 -->
|
|
<view class="bar" wx:if="{{examine.show}}">
|
|
<view class="bar-title">
|
|
<view class="bar-title-left">销售补贴考核进度</view>
|
|
<view>¥{{examine.amount}} <text>元</text></view>
|
|
</view>
|
|
<view class="bar-line">
|
|
<view class="progress" style="width: 100%"></view>
|
|
<view class="progress-box" style="width: {{examine.amount < examine.need ? examine.amount : '100'}}%">
|
|
<!-- <view class="progress-box-name {{examine.amount == 0 ? 'active' : ''}}" wx:if="{{examine.need != examine.amount}}">{{examine.amount}}</view> -->
|
|
</view>
|
|
<view class="progress-see-name">
|
|
<view class="progress-see-name-left">0</view>
|
|
<view>{{examine.need}}</view>
|
|
</view>
|
|
<!-- <view class="progress" style="width: {{examine.need}}%">
|
|
<view class="progress-box" style="width: {{examine.amount < examine.need ? examine.amount : '100'}}%">
|
|
<view class="progress-box-name {{examine.amount == 0 ? 'active' : ''}}" wx:if="{{examine.need != examine.amount}}">{{examine.amount}}</view>
|
|
</view>
|
|
<view class="progress-name">{{examine.need}}</view>
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 收益明细 -->
|
|
<view class="detailed active">
|
|
<view class="listTitle">收益明细</view>
|
|
<view class="list" wx:if="{{logsArr.length > 0}}">
|
|
<view class="list-item" wx:for="{{logsArr}}" wx:key="logsArr">
|
|
<view class="item-text">
|
|
<view class="item-name">{{item.remark}}</view>
|
|
<view class="item-time">{{item.created_at}}</view>
|
|
</view>
|
|
<view class="item-number">{{item.amount}}</view>
|
|
</view>
|
|
<view class="pagesLoding" wx:if="{{pageLoding}}">
|
|
<view wx:if="{{page.has_more}}"><image class="pagesLoding-icon" src="/static/icons/refresh_loding.gif" mode="widthFix"></image>加载中...</view>
|
|
<view wx:else>没有更多了~</view>
|
|
</view>
|
|
</view>
|
|
<view class="pages-no" wx:else>
|
|
<image src="/static/imgs/cont_null.png" mode="widthFix"></image>
|
|
<view>暂无数据</view>
|
|
</view>
|
|
</view> |