From 376bd0bb1132275aa6f4b564e3815bf10e18827a Mon Sep 17 00:00:00 2001 From: "qumeng039@126.com" <86925389+qumen@users.noreply.github.com> Date: Mon, 11 Aug 2025 15:51:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=96=E6=B6=88=E7=AC=AC=E5=9B=9B=E4=B8=AA?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=A4=BE=E5=9B=A2=E8=83=8C=E6=99=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/GroupEvolution/component/groupGraph.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/views/GroupEvolution/component/groupGraph.vue b/src/views/GroupEvolution/component/groupGraph.vue index 0d3564e..9277d68 100644 --- a/src/views/GroupEvolution/component/groupGraph.vue +++ b/src/views/GroupEvolution/component/groupGraph.vue @@ -274,11 +274,13 @@ const clusterAnalyze = () => { node.fillColor = color node.color = color }) - graphVis.addNodesInGroup(nodes, { - shape: "polygon", //circle|rect|polygon|bubbleset - color: color, - alpha: 0.2 - }) + if (storeId !== "anomalousGroup") { + graphVis.addNodesInGroup(nodes, { + shape: "polygon", //circle|rect|polygon|bubbleset + color: color, + alpha: 0.2 + }) + } }) // graphVis.autoGroupLayout(graphVis.nodes) }