14 lines
767 B
Plaintext
14 lines
767 B
Plaintext
|
<view class="container">
|
||
|
<view v-if="loadingVisible=='loading'" class="loading"></view>
|
||
|
<view v-elif="loadingVisible=='error'" class="error-box" @click="notifyParentToRefresh">
|
||
|
<image src="/static/images/load_err.png" class="loading_err"></image>
|
||
|
<text style="align-self: center;margin-top: 10px;color: #cecece;font-size: 14px;">加载失败</text>
|
||
|
</view>
|
||
|
<view v-elif="loadingVisible=='empty'" class="error-box" @click="notifyParentToRefresh">
|
||
|
<image src="/static/images/load_err.png" class="loading_err"></image>
|
||
|
<text style="align-self: center;margin-top: 10px;color: #cecece;font-size: 14px;">暂无数据</text>
|
||
|
</view>
|
||
|
<block v-else="loadingVisible=='success'">
|
||
|
<slot></slot>
|
||
|
</block>
|
||
|
</view>
|