diff options
| author | 陈劲松 <[email protected]> | 2023-07-17 12:08:09 +0000 |
|---|---|---|
| committer | 陈劲松 <[email protected]> | 2023-07-17 12:08:09 +0000 |
| commit | 80130e046beca47309d79f6851245a207854e26b (patch) | |
| tree | 43dce5c739f84f9a74cf9f4ef5df71ca6c5788b9 | |
| parent | 4b044331942b14ddee00f1d5eb9a35537f2c0683 (diff) | |
| parent | bddc366f0558bd306437ab581ccf98f05e780f63 (diff) | |
fix: 修复实体下拉预览跳转url参数不对的问题
See merge request cyber-narrator/cn-ui!33
4 files changed, 4 insertions, 4 deletions
diff --git a/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue b/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue index 6824ace9..26faeb73 100644 --- a/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue +++ b/src/views/detections/overview/DetectionPerformanceEventAppOverview.vue @@ -244,7 +244,7 @@ export default { path: '/entityDetail', query: { entityType: type, - name: name + entityName: name } }) window.open(href, '_blank') diff --git a/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue b/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue index 710339c9..6576d614 100644 --- a/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue +++ b/src/views/detections/overview/DetectionPerformanceEventDomainOverview.vue @@ -275,7 +275,7 @@ export default { path: '/entityDetail', query: { entityType: type, - name: name + entityName: name } }) window.open(href, '_blank') diff --git a/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue b/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue index 8da10026..ae391b42 100644 --- a/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue +++ b/src/views/detections/overview/DetectionPerformanceEventIpOverview.vue @@ -236,7 +236,7 @@ export default { path: '/entityDetail', query: { entityType: type, - name: name + entityName: name } }) window.open(href, '_blank') diff --git a/src/views/detections/overview/DetectionSecurityEventOverview.vue b/src/views/detections/overview/DetectionSecurityEventOverview.vue index c0ca3012..ff883d67 100644 --- a/src/views/detections/overview/DetectionSecurityEventOverview.vue +++ b/src/views/detections/overview/DetectionSecurityEventOverview.vue @@ -379,7 +379,7 @@ export default { path: '/entityDetail', query: { entityType: type, - name: name + entityName: name } }) window.open(href, '_blank') |
