From 7f15139a38df4e0d89ad707cdb199cf8b1bc86a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=B4=AA=E6=B4=AA?= <2498601771@qq.com> Date: Thu, 29 Jun 2023 10:31:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E5=B7=A6=E4=BE=A7filter=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E5=9B=A0=E6=97=B6=E9=97=B4=E6=88=B3=E8=BD=AC=E6=8D=A2=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E5=81=B6=E7=8E=B0noData=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/entityExplorer/EntityFilter.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/views/entityExplorer/EntityFilter.vue b/src/views/entityExplorer/EntityFilter.vue index 4b2c8c72..47e6f7d5 100644 --- a/src/views/entityExplorer/EntityFilter.vue +++ b/src/views/entityExplorer/EntityFilter.vue @@ -111,8 +111,8 @@ export default { entityType: filter.type, column: item.topColumn, top: 10, - startTime: parseInt(this.timeFilter.startTime / 1000), - endTime: parseInt(this.timeFilter.endTime / 1000) + startTime: parseInt(this.timeFilter.startTime), + endTime: parseInt(this.timeFilter.endTime) } this.loading = true this.popoverData = [] @@ -142,7 +142,6 @@ export default { }, filter (name, topData) { this.showTopDialog('', topData) - console.log('打印数据', name, topData) this.$emit('filter', name, topData) } }