From 5a368922abb2ded331840356b3947577bf507300 Mon Sep 17 00:00:00 2001 From: "qumeng039@126.com" <86925389+qumen@users.noreply.github.com> Date: Fri, 1 Aug 2025 15:43:24 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E4=B8=AA=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=92=8C=E7=AC=AC=E4=B8=89=E4=B8=AA=E9=A1=B5=E9=9D=A2=E5=BC=B9?= =?UTF-8?q?=E7=AA=97=E6=B7=BB=E5=8A=A0=E5=AE=8C=E6=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/llinkPrediction/index.js | 2 +- .../characterInteraction/index.vue | 153 ++++++++++++++++- .../charactersHiddenInteraction/index.vue | 154 +++++++++++++++++- .../LinkPrediction/components/detailNode.vue | 43 ++++- src/views/LinkPrediction/components/graph.vue | 11 +- .../socialGroups/components/graph.vue | 7 +- .../LinkPrediction/socialGroups/index.vue | 126 ++++++++------ 7 files changed, 421 insertions(+), 75 deletions(-) diff --git a/src/store/llinkPrediction/index.js b/src/store/llinkPrediction/index.js index 2ffd87b..0d9d0c2 100644 --- a/src/store/llinkPrediction/index.js +++ b/src/store/llinkPrediction/index.js @@ -469,7 +469,7 @@ export const useSocialGroupsStore = defineStore("socialGroups", { customStatisticsObj.hiddenInteractionCount == null ) { customStatisticsObj.hiddenInteractionCount = 1 - + customStatisticsObj.groupCount = ids[0] === ids[1] ? 1 : 3 } diff --git a/src/views/LinkPrediction/characterInteraction/index.vue b/src/views/LinkPrediction/characterInteraction/index.vue index 62cf12e..e02ceba 100644 --- a/src/views/LinkPrediction/characterInteraction/index.vue +++ b/src/views/LinkPrediction/characterInteraction/index.vue @@ -14,7 +14,11 @@
- +
@@ -32,10 +36,89 @@
+ + + +
+
+ +
+
+ {{ curSelectedUser.name }} +
+
+
+ 粉丝量:   +

{{ curSelectedUser.fans }}

+
+
+ 发帖数:   +

{{ curSelectedUser.postNum }}

+
+
+
+
+
+
+ +
+ 发帖总数:   +

{{ curSelectedUser.postNum }}

+
+
+
+ +
+ 发帖频率:   +

{{ curSelectedUser.postFreqPerDay }}

+
+
+
+ +
+ 参与互动次数:   +

{{ curSelectedUser.interactionNum }}

+
+
+
+ +
+ 参与互动频率:   +

{{ curSelectedUser.interactionFreqPerDay }}

+
+
+
+ +
+ 帖文被互动次数:   +

{{ curSelectedUser.interactedNum }}

+
+
+
+ +
+ 最近活跃时间:   +

{{ curSelectedUser.recentActiveTime }}

+
+
+
+
+
diff --git a/src/views/LinkPrediction/components/graph.vue b/src/views/LinkPrediction/components/graph.vue index 7474f96..5b085b7 100644 --- a/src/views/LinkPrediction/components/graph.vue +++ b/src/views/LinkPrediction/components/graph.vue @@ -11,16 +11,16 @@