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.
11 lines
282 B
11 lines
282 B
2 years ago
|
<template name="loading">
|
||
|
<view class="loading text-center">
|
||
|
<block wx:if="{{loading}}">
|
||
|
<image src="/images/group/loading-black.svg"></image>
|
||
|
<view class="">正在加载</view>
|
||
|
</block>
|
||
|
<block wx:else>
|
||
|
<view class="no-data">没有更多数据了</view>
|
||
|
</block>
|
||
|
</view>
|
||
|
</template>
|