riku
2022-09-14 2206df0da6499846c78a358cf95ca33c218a5c5d
1
2
3
4
5
6
7
8
9
10
11
12
13
<!--component/loadingstatus/loadingstatus.wxml-->
<import src="/template/nodata.wxml"></import>
 
<template wx:if="{{!loading && nodata}}" is="nodataPage"></template>
<block wx:else="">
  <view wx:if="{{!loading}}" class="load-more">
    <text wx:if="{{needLoadMore}}">上滑加载</text>
    <text wx:else="">——到底了——</text>
  </view>
  <view wx:else class="load-more">
    <mp-loading duration="{{900}}" type="dot-gray" show="{{true}}" animated="{{true}}"></mp-loading>
  </view>
</block>