gov_propagandize/components/container-loading/container-loading.wxml
2025-02-07 16:29:25 +08:00

9 lines
354 B
Plaintext

<view class="container">
<view class="loading" wx:if="{{loadingVisible=='loading'}}"></view>
<view wx:elif="{{loadingVisible=='error'}}" style="align-self: center;">
<image src="../../imgs/load_err.png" class="loading_err"></image>
</view>
<block wx:else="{{loadingVisible=='success'}}">
<slot></slot>
</block>
</view>