14 lines
753 B
Plaintext
14 lines
753 B
Plaintext
<view class="container" style="flex:1;height:auto;">
|
|
<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;font-size: 14px;">加载失败</text>
|
|
</view>
|
|
<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;font-size: 14px;">暂无数据</text>
|
|
</view>
|
|
<block wx:else="{{loadingVisible=='success'}}">
|
|
<slot></slot>
|
|
</block>
|
|
</view> |