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.
12 lines
524 B
12 lines
524 B
<view class="load-more" style="visibility: {{ loadMoreVisible ? 'visible': 'hidden'}}">
|
|
<view class="more-data" wx:if="{{loadMoreType === 'loading'}}">
|
|
<image src="../../assets/images/loading.gif" />
|
|
<view class="content">加载中...</view>
|
|
</view>
|
|
<view class="no-data" wx:elif="{{loadMoreType === 'none'}}">
|
|
<view class="content">没有更多了~</view>
|
|
</view>
|
|
<view class="no-data" wx:elif="{{loadMoreType === 'nodata'}}">
|
|
<view class="content">暂无数据</view>
|
|
</view>
|
|
</view>
|