44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
<view class="tips">
|
|
水滴的使用规则:可以进行商品兑换
|
|
<image src="/static/icons/water_close.png"></image>
|
|
</view>
|
|
<view class="water">
|
|
<view class="water-top">
|
|
水滴账户<image src="/static/icons/water_icon.png"></image>
|
|
</view>
|
|
<view class="water-number">
|
|
{{score}}
|
|
</view>
|
|
</view>
|
|
<view class="detailed">
|
|
<view class="title">
|
|
水滴明细
|
|
</view>
|
|
<view class="list" wx:if="{{logsArr.length > 0}}">
|
|
<view class="item" wx:for="{{logsArr}}" wx:key="logsArr">
|
|
<view class="top">
|
|
<view class="name">
|
|
{{item.remark}}
|
|
</view>
|
|
<view class="number">
|
|
{{item.amount}}<text>水滴</text>
|
|
</view>
|
|
</view>
|
|
<view class="time">
|
|
时间:<text>{{item.created_at}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="pagesLoding" wx:if="{{lodingStats}}">
|
|
<block wx:if="{{page.has_more}}">
|
|
<image class="pagesLoding-icon" src="/static/icon/refresh_loding.gif" mode="widthFix"></image>加载中...
|
|
</block>
|
|
<block wx:else>
|
|
没有更多了~
|
|
</block>
|
|
</view>
|
|
</view>
|
|
<view class="pages-no" wx:else>
|
|
<image src="/static/imgs/coupon_null.png" mode="widthFix"></image>
|
|
<view>暂无数据</view>
|
|
</view>
|
|
</view> |