37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
<van-sticky>
|
|
<van-nav-bar
|
|
title="积分详情"
|
|
left-text="返回"
|
|
left-arrow
|
|
bind:click-left="goback"
|
|
/>
|
|
</van-sticky>
|
|
|
|
<view class="card integral_total">
|
|
<view class="integral_total_item">
|
|
<text class="integral_total_value">{{OUTScore}}</text>
|
|
<text class="integral_total_category">出账积分</text>
|
|
</view>
|
|
<view class="integral_total_item">
|
|
<text class="integral_total_value totalPoint">{{residueScore}}</text>
|
|
<text class="integral_total_category">剩余积分</text>
|
|
</view>
|
|
<view class="integral_total_item">
|
|
<text class="integral_total_value">{{INScore}}</text>
|
|
<text class="integral_total_category">入账积分</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="card-blank">
|
|
<text style="color: #777;">历史积分</text>
|
|
</view>
|
|
|
|
<view class="card integral_detail" wx:for="{{scoreLogList}}" wx:key="index">
|
|
<view class="integral_detail_content">
|
|
<text class="integral_detail_title">{{categorys[item.category]}}</text>
|
|
<text class="integral_detail_date">{{item.createTime}}</text>
|
|
</view>
|
|
<text class="integral_detail_value">{{item.inOut=="IN"?"+":'-'}}{{item.score}}</text>
|
|
</view>
|
|
|
|
<van-empty wx:if="{{scoreLogList.length==0}}" description="暂时没有积分记录~" /> |