index.wxml 1.0KB

12345678910111213141516171819202122232425262728
  1. <!--index.wxml-->
  2. <view class="MainPage" bindtouchmove="ResetDeleteIndex">
  3. <scroll-view scroll-y style="height: {{WindowHeight}}px;" bindscrolltolower="GetList">
  4. <view class="isNull centerLabel" hidden="{{!IsNull}}">
  5. <text>暂无数据</text>
  6. </view>
  7. <view class="list">
  8. <view class="flex-h" wx:for="{{list}}" wx:for-item="item" wx:key="item.activityId">
  9. <!-- 左侧图片 -->
  10. <view class="img">
  11. <image mode="aspectFill" src="{{item.imgUrl}}" class="centerLabel cover"></image>
  12. </view>
  13. <!-- 右侧内容 -->
  14. <view class="flex-item">
  15. <view>
  16. <text class="name">{{item.title}}</text>
  17. <text>{{item.desc}}</text>
  18. <text class="price">活动时间:<text>{{(item.activityDate || '')}}</text></text>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <text class="noMore" wx:if="{{!IsNull}}">{{list.length < Total ? '正在加载更多...' : '已加载全部'}}</text>
  24. </scroll-view>
  25. </view>