ts_aimz/components/container-loading/container-loading.wxml

14 lines
722 B
Plaintext
Raw Normal View History

2025-03-26 18:15:07 +08:00
<view class="container" style="height:{{height}}px;">
2025-03-24 18:05:54 +08:00
<view class="loading" wx:if="{{loadingVisible=='loading'}}"></view>
2025-03-26 18:15:07 +08:00
<view wx:elif="{{loadingVisible=='error'}}" class="error-box">
2025-03-24 18:05:54 +08:00
<image src="/static/images/load_err.png" class="loading_err"></image>
2025-03-26 18:15:07 +08:00
<text style="align-self: center;margin-top: 10px;color: #cecece;">加载失败</text>
2025-03-24 18:05:54 +08:00
</view>
2025-03-28 18:36:17 +08:00
<view wx:elif="{{loadingVisible=='empty'}}" class="error-box">
<image src="/static/images/load_err.png" class="loading_err"></image>
<text style="align-self: center;margin-top: 10px;color: #cecece;">暂无数据</text>
</view>
2025-03-24 18:05:54 +08:00
<block wx:else="{{loadingVisible=='success'}}">
<slot></slot>
</block>
</view>