52 lines
1.9 KiB
Plaintext
52 lines
1.9 KiB
Plaintext
<view class="tips">
|
|
水滴的使用规则:可以进行商品兑换
|
|
<image src="/static/icons/water_close.png"></image>
|
|
</view>
|
|
<view class="water active">
|
|
<view class="water-top">
|
|
水滴账户<image src="/static/icons/water_icon.png"></image>
|
|
</view>
|
|
<view class="water-number">
|
|
{{score}}
|
|
</view>
|
|
<view class="water-convert">
|
|
<navigator hover-class="none" url="/pages/water/waterOrder/waterOrder" class="water-convert-go">兑换订单 ></navigator>
|
|
<navigator hover-class="none" url="/pages/recruit/exchange/exchange" class="water-convert-go" wx:if="{{isExchange}}">水滴兑换 ></navigator>
|
|
</view>
|
|
</view>
|
|
<!-- {{isExchange ? 'active' : ''}} -->
|
|
<view class="detailed active">
|
|
<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 class="time" wx:if="{{item.expired_at != ''}}">
|
|
过期时间:<text>{{item.expired_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/cont_null.png" mode="widthFix"></image>
|
|
<view>暂无数据</view>
|
|
</view>
|
|
</view> |