riku
2025-04-27 f46786f11c5c08ead7501a82e5a71430ad69b782
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<import src="/pages/common/template/template-loading.wxml" />
 
<view class="page">
  <view class="page-header">
    <view class="supervision-search" bind:tap="navToSearchPage">
      <t-search placeholder="{{placeholder}}" leftIcon="search" disabled> </t-search>
    </view>
    <filter
      sceneMode="{{1}}"
      bind:sortsChange="handleSortsChange"
      bind:timeInitValue="initTime"
      bind:timePickerChange="handleTimePickerChange"
      bind:sceneInitValue="initScene"
      bind:scenePickerChange="handleScenePickerChange"
      bind:showFilterPopup="showFilterPopup"
    >
      <filter-popup-2
        slot="filterPopup"
        show="{{show}}"
        bind:showFilterPopupClose="showFilterPopupClose"
        bind:initValue="initPopup"
        bind:reset="onPopupSearch"
        bind:confirm="onPopupSearch"
      >
      </filter-popup-2>
    </filter>
  </view>
 
  <view class="page-container">
    <template is="pulldown-loading" wx:if="{{pageLoading && searchResult.length != 0}}" />
    <block wx:if="{{searchResult.length > 0}}">
      <enterprise-rank-result
        wx:for="{{searchResult}}"
        wx:key="index"
        wx:for-index="index"
        result="{{item}}"
        bind:click="handCellClick"
      ></enterprise-rank-result>
    </block>
    <t-empty-page wx:elif="{{!pageLoading}}" description="无自评记录" />
    <load-more list-is-empty="{{!searchResult.length}}" status="{{loadStatus}}" bind:retry="_startLoad" />
  </view>
  <view class="page-footer"></view>
</view>