1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| <view class="page">
| <t-loading
| wx:if="{{pageLoading}}"
| theme="circular"
| size="40rpx"
| text="加载中..."
| loading
| t-class="fy-loading"
| t-class-indicator="fy-loading-indicator"
| t-class-text="fy-loading-text"
| >
| </t-loading>
| <view class="page-container">
| <info-cards
| cardTitle="执法动态"
| infoList="{{infoList}}"
| bindnavTo="navToInfoPage"
| ></info-cards>
| <load-more
| list-is-empty="{{!infoList.length}}"
| status="{{loadStatus}}"
| bind:retry="_startLoad"
| />
| </view>
| <view class="page-footer"></view>
| </view>
|
|