<import src="/pages/common/template/template-loading.wxml" />
|
|
<view class="page">
|
<view class="page-header">
|
<filter
|
risk="{{searchOptions.riskType}}"
|
scene="{{searchOptions.sceneType}}"
|
time="{{searchOptions.period}}"
|
bind:riskPickerChange="handleRiskChange"
|
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}}"
|
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}}">
|
<risk-item
|
wx:for="{{searchResult}}"
|
wx:key="index"
|
wx:for-index="index"
|
result="{{item}}"
|
bind:click="handCellClick"
|
></risk-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>
|