18 lines
1.1 KiB
Plaintext
18 lines
1.1 KiB
Plaintext
<view class="container">
|
|
<view wx:if="{{loadingVisible=='loading'}}" class="loading"></view>
|
|
<view wx:elif="{{loadingVisible=='error'}}" class="error-box" bind:tap="notifyParentToRefresh">
|
|
<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" bind:tap="notifyParentToRefresh">
|
|
<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=='create'}}" class="error-box" bind:tap="notifyParentCreate">
|
|
<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> |