拓恒河湖长制全民护河平台WEB端
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.

18 lines
1.1KB

  1. <!--package_mine/pages/exchange/index.wxml-->
  2. <view class="protect_container">
  3. <list id="list" class="exchange_list" url="{{current}}" bind:update-list="updateList" list="{{list}}" bind:reset-list="resetList" params="{{params}}">
  4. <view class="exchange_item" data-item="{{item}}" wx:for="{{list}}" wx:key="index">
  5. <view class="exchange_info">
  6. <image class="exchange_img" src="{{item.shopsImage}}"></image>
  7. <view class="info_box">
  8. <view style="color: #2D84E4;" class="status_box">已兑换</view>
  9. <text class="info_item" style="font-size: 30rpx; font-weight: bold;">{{item.shopsName}}</text>
  10. <text class="info_item" style="font-size: 26rpx;margin: 16rpx 0;">{{item.areaName}}</text>
  11. <text class="info_item" style="font-size: 22rpx;">{{item.createTime}}</text>
  12. <view class="status_box">实付:<text style="color: #2D84E4;">{{item.pointsChange}}</text>积分</view>
  13. </view>
  14. </view>
  15. </view>
  16. </list>
  17. </view>