CN-1265: 实体列表的搜索器和过滤器一系列bug修复
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
<div style="display: flex;flex-direction: column;height: calc(100% - 42px);">
|
||||
<div class="explorer-result" v-if="showList" style="position: relative;">
|
||||
<loading :loading="loadingCount" style="width: 240px"></loading>
|
||||
<span>{{ summaryCount.total }} </span>results,IP
|
||||
<span>{{ summaryCount.totalCount }} </span>results,IP
|
||||
<span>{{ summaryCount.ipCount }}</span>,Domain
|
||||
<span>{{ summaryCount.domainCount }}</span>,APP
|
||||
<span>{{ summaryCount.appCount }}</span>
|
||||
@@ -369,11 +369,10 @@ export default {
|
||||
|
||||
this.reloadUrl({
|
||||
listMode: this.listMode,
|
||||
q: param.str,
|
||||
q: param.str || '',
|
||||
mode: mode,
|
||||
startTime: getSecond(this.timeFilter.startTime),
|
||||
endTime: getSecond(this.timeFilter.endTime),
|
||||
range: this.timeFilter.dateRangeValue
|
||||
pageNo: this.pageObj.pageNo,
|
||||
pageSize: this.pageObj.pageSize
|
||||
})
|
||||
|
||||
if (!this.showList) {
|
||||
@@ -382,11 +381,11 @@ export default {
|
||||
path: '/entityExplorer',
|
||||
query: {
|
||||
listMode: this.listMode,
|
||||
q: param.str,
|
||||
q: param.str || '',
|
||||
mode: mode,
|
||||
startTime: getSecond(this.timeFilter.startTime),
|
||||
endTime: getSecond(this.timeFilter.endTime),
|
||||
range: this.timeFilter.dateRangeValue
|
||||
range: this.timeFilter.dateRangeValue,
|
||||
pageNo: this.pageObj.pageNo,
|
||||
pageSize: this.pageObj.pageSize
|
||||
}
|
||||
})
|
||||
this.showList = true
|
||||
|
||||
Reference in New Issue
Block a user