10 lines
471 B
Plaintext
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> |