ts_aimz_uni/wxcomponents/container-loading/container-loading.wxml

14 lines
767 B
Plaintext
Raw Normal View History

2025-04-16 16:15:41 +08:00
<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>