锦水居民端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

33 lines
1.5 KiB

<view class="exchange-index">
<view class="exchange-header">
<view class="background"></view>
<view class="exchange-code">
<view class="code-text">
<image src="../../images/code.png" class="code" />
<text>兑换码</text>
</view>
<image src="{{codeUrl}}" class="code-img" bind:tap="getNewCode" wx:if="{{!showLoading}}" />
<view class="code-img" wx:if="{{showLoading}}">
<image src="../../../../images/loading.gif" class='loading' />
</view>
<view class="code-footer" bind:tap="getNewCode">请点击兑换码刷新</view>
</view>
</view>
<view class="exchange-time">
<view class="time-title">
<text class="" style="margin-left:90rpx">兑换时间</text>
<text class="" style="margin-left:220rpx">说明</text>
<text class="" style="margin-left:160rpx">积分</text>
</view>
<view class="time-item-box">
<view class="time-item" wx:for="{{pointList}}">
<text class="time-item-time">{{item.operationTime}}</text>
<text class="time-item-remark">{{item.remark?item.remark:'暂无核销记录说明'}}</text>
<!-- <text class="time-item-num">-1000</text> -->
<text class="time-item-num">{{item.operationType==='1'? '+':'-'}}{{item.points}}</text>
</view>
</view>
</view>
<no-data isShow="{{nodata}}" wx:if="{{nodata}}"></no-data>
<load-more loadMoreVisible="{{loadMoreVisible}}" loadMoreType="{{loadMoreType}}" load-more-child='load-more-exchange'></load-more>
</view>