ts_aimz/components/container-loading/container-loading.wxml
2025-03-26 18:15:07 +08:00

10 lines
471 B
Plaintext

<view class="container" style="height:{{height}}px;">
<view class="loading" wx:if="{{loadingVisible=='loading'}}"></view>
<view wx:elif="{{loadingVisible=='error'}}" 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>
<block wx:else="{{loadingVisible=='success'}}">
<slot></slot>
</block>
</view>