<import src="/pages/common/template/template-loading.wxml" />
|
|
<view class="page">
|
<view class="page-header">
|
<filter
|
code="{{searchOptions.ecCodeType}}"
|
scene="{{searchOptions.sceneType}}"
|
time="{{searchOptions.period}}"
|
bind:codePickerChange="handleCodeChange"
|
bind:scenePickerChange="handleSceneChange"
|
bind:timePickerChange="handleTimeChange"
|
bind:showFilterPopup="showFilterPopup"
|
>
|
<filter-popup-2
|
slot="filterPopup"
|
show="{{show}}"
|
location="{{location}}"
|
bind:showFilterPopupClose="showFilterPopupClose"
|
bind:initValue="initPopup"
|
bind:reset="onPopupSearch"
|
bind:confirm="onPopupSearch"
|
>
|
</filter-popup-2>
|
</filter>
|
<t-summary
|
slot="bottom"
|
time="{{creditPeriod}}"
|
value="{{creditRes}}"
|
></t-summary>
|
<view class="supervision-search">
|
<!-- <t-search placeholder="{{placeholder}}" leftIcon="search">
|
</t-search> -->
|
<t-search
|
placeholder="{{placeholder}}"
|
model:value="{{searchValue}}"
|
bind:submit="handleSubmit"
|
bind:clear="handleClear"
|
bind:change="handleChange"
|
>
|
</t-search>
|
</view>
|
</view>
|
|
<view class="page-container">
|
<template
|
is="pulldown-loading"
|
wx:if="{{pageLoading && searchResult.length != 0}}"
|
/>
|
<block wx:if="{{searchResult.length > 0}}">
|
<code-item
|
wx:for="{{searchResult}}"
|
wx:key="index"
|
wx:for-index="index"
|
result="{{item}}"
|
bind:click="handCellClick"
|
></code-item>
|
</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>
|