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.
13 lines
413 B
13 lines
413 B
<!--components/empty/index.wxml-->
|
|
<view class="empty">
|
|
<view class="empty-loading" wx:if="{{loading && !empty}}">
|
|
<view class="load-indicator">加载中<dot></dot></view>
|
|
</view>
|
|
<view class="empty-bd" wx:if="{{empty}}">
|
|
<view class="empty-logo">{{message}}</view>
|
|
<view class="empty-refresh"></view>
|
|
</view>
|
|
<view class="empty_bottom" wx:if="{{bottom}}">
|
|
已到底了
|
|
</view>
|
|
</view>
|
|
|