diff --git a/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue b/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue index 603916cd..afc887c4 100644 --- a/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue +++ b/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue @@ -3,7 +3,28 @@
{{$t('overall.remark')}}
-
{{basicInfo.malwareDescription || '-'}}
+
+ {{ detection.app_name }} + + + +
Fields
@@ -89,7 +110,17 @@ export default { reject(e) } }) - } + }, + goDetail(type, name) { + const { href } = this.$router.resolve({ + path: '/entityDetail', + query: { + entityType: type, + name: name, + }, + }) + window.open(href, '_blank') + }, }, mounted () { this.query() diff --git a/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue b/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue index d9ae5af8..e61f8d94 100644 --- a/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue +++ b/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue @@ -3,7 +3,28 @@
{{$t('overall.remark')}}
-
{{basicInfo.malwareDescription || '-'}}
+
+ {{ detection.domain }} + + + +
Fields
@@ -78,7 +99,7 @@ export default { methods: { query () { this.queryBasic().then(responses => { - responses && (this.basicInfo = responses) + responses && (this.basicInfo = responses) }) }, queryBasic () { @@ -93,7 +114,17 @@ export default { reject(e) } }) - } + }, + goDetail(type, name) { + const { href } = this.$router.resolve({ + path: '/entityDetail', + query: { + entityType: type, + name: name, + }, + }) + window.open(href, '_blank') + }, }, mounted () { this.query() diff --git a/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue b/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue index 5f4a2b08..004f1837 100644 --- a/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue +++ b/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue @@ -3,7 +3,28 @@
{{$t('overall.remark')}}
-
{{basicInfo.malwareDescription || '-'}}
+
+ {{ detection.server_ip }} + + + +
Fields
@@ -81,7 +102,17 @@ export default { reject(e) } }) - } + }, + goDetail(type, name) { + const { href } = this.$router.resolve({ + path: '/entityDetail', + query: { + entityType: type, + name: name, + }, + }) + window.open(href, '_blank') + }, }, mounted () { this.query() diff --git a/src/views/detections/overview/DetectionSecurityEventOverview.vue b/src/views/detections/overview/DetectionSecurityEventOverview.vue index 610cb1be..a4726b86 100644 --- a/src/views/detections/overview/DetectionSecurityEventOverview.vue +++ b/src/views/detections/overview/DetectionSecurityEventOverview.vue @@ -1,132 +1,226 @@