From df4c410ce91a4774aad485d103ec87a650abba22 Mon Sep 17 00:00:00 2001 From: hyx Date: Mon, 21 Mar 2022 14:59:16 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"CN-399=20Detection--=E6=9C=8D?= =?UTF-8?q?=E5=8A=A1=E8=B4=A8=E9=87=8F=E4=BA=8B=E4=BB=B6=20=E6=8C=87?= =?UTF-8?q?=E6=A0=87=E5=8F=98=E5=8C=96=E6=9B=B2=E7=BA=BF=E5=BC=80=E5=8F=91?= =?UTF-8?q?:=E6=97=B6=E9=97=B4=E6=9F=A5=E8=AF=A2=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E5=BA=94=E4=B8=BA=E7=A7=92=E7=BA=A7=E6=97=B6=E9=97=B4=E6=88=B3?= =?UTF-8?q?"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit abad4d9d --- .../overview/DetectionPerformanceEventAppOverview.vue | 4 ++-- .../overview/DetectionPerformanceEventDomainOverview.vue | 4 ++-- .../overview/DetectionPerformanceEventIpOverview.vue | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue b/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue index d96596e1..bf278a79 100644 --- a/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue +++ b/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue @@ -160,8 +160,8 @@ export default { get(api.detection.performanceEvent.metric, { domain: this.detection.domain, - startTime: this.searchStartTime, - endTime: this.searchEndTime, + startTime: this.searchStartTime*1000, + endTime: this.searchEndTime*1000, }).then((response) => { if (response.code === 200) { resolve(response.data.result[0]) diff --git a/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue b/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue index cacba1a7..26655e6a 100644 --- a/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue +++ b/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue @@ -194,8 +194,8 @@ export default { get(api.detection.performanceEvent.metric, { domain: this.detection.domain, - startTime: this.searchStartTime, - endTime: this.searchEndTime, + startTime: this.searchStartTime*1000, + endTime: this.searchEndTime*1000, }).then((response) => { if (response.code === 200) { resolve(response.data.result[0]) diff --git a/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue b/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue index c84e80f1..0d433a0f 100644 --- a/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue +++ b/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue @@ -183,8 +183,8 @@ export default { get(api.detection.performanceEvent.metric, { domain: this.detection.domain, - startTime: this.searchStartTime, - endTime: this.searchEndTime, + startTime: this.searchStartTime*1000, + endTime: this.searchEndTime*1000, }).then((response) => { if (response.code === 200) { resolve(response.data.result[0])