12345678910111213141516171819202122232425262728 |
- <!--index.wxml-->
- <view class="MainPage" bindtouchmove="ResetDeleteIndex">
- <scroll-view scroll-y style="height: {{WindowHeight}}px;" bindscrolltolower="GetList">
- <view class="isNull centerLabel" hidden="{{!IsNull}}">
- <text>暂无数据</text>
- </view>
- <view class="list">
- <view class="flex-h" wx:for="{{list}}" wx:for-item="item" wx:key="item.activityId">
-
- <!-- 左侧图片 -->
- <view class="img">
- <image mode="aspectFill" src="{{item.imgUrl}}" class="centerLabel cover"></image>
- </view>
-
- <!-- 右侧内容 -->
- <view class="flex-item">
- <view>
- <text class="name">{{item.title}}</text>
- <text>{{item.desc}}</text>
- <text class="price">活动时间:<text>{{(item.activityDate || '')}}</text></text>
- </view>
- </view>
-
- </view>
- </view>
- <text class="noMore" wx:if="{{!IsNull}}">{{list.length < Total ? '正在加载更多...' : '已加载全部'}}</text>
- </scroll-view>
- </view>
|