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.
20 lines
1.2 KiB
20 lines
1.2 KiB
<scroll-view id="scrollview" scroll-y style="height:{{height}}rpx" bindscrolltolower="scrolltolower" bindscroll="bindscroll" lower-threshold="80">
|
|
<view class="list-empty" style="height:{{height}}rpx" wx:if="{{!pageList.length}}">
|
|
<view style="margin-bottom:24px" wx:if="{{loading}}">
|
|
<van-loading type="spinner" size="32" />
|
|
</view>
|
|
<image class="img-empty" src="/assets/image/list_empty.png" wx:else></image>
|
|
<view class="text-empty">{{loading? '正在加载' : '暂无数据'}}</view>
|
|
</view>
|
|
<view style="height: {{ headerHeight }}px;"></view>
|
|
<view wx:for="{{pageList}}" wx:for-item="element" wx:for-index="page" wx:key="page" id="listPageId{{page}}" wx:if="{{visiblist[page]}}">
|
|
<view wx:for="{{element}}" wx:key="index">
|
|
<item item="{{item}}"></item>
|
|
</view>
|
|
</view>
|
|
<view style=" height: {{bottomHeight}}px;"></view>
|
|
<van-divider content-position="center" wx:if="{{ pageList.length >= 1}}" custom-style="padding:0rpx 120rpx">
|
|
<van-loading type="spinner" size="16" wx:if="{{!finished}}" />
|
|
<text class="text-sm" style="margin-left:8rpx">{{finished?'到底啦~':'加载中...'}}</text>
|
|
</van-divider>
|
|
</scroll-view>
|