2025-07-25 15:07:08 +08:00
|
|
|
import http from "@/utils/http"
|
2025-07-23 15:02:10 +08:00
|
|
|
|
|
|
|
|
//人物互动隐关系预测的用户组列表
|
|
|
|
|
export function getGroupUserListFromInteraction() {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get("/linkPrediction/interaction/group_list")
|
2025-07-23 15:02:10 +08:00
|
|
|
}
|
|
|
|
|
|
2025-07-25 15:07:08 +08:00
|
|
|
//人物互动隐关系预测的社团节点
|
|
|
|
|
export function getInteractionCommunityNodes() {
|
|
|
|
|
return http.get("linkPrediction/interaction/community")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//人物互动隐关系预测的社团内部节点
|
2025-07-29 12:13:19 +08:00
|
|
|
export function getInteractionCommunityDetailNodes(ids, time = "2024.05.16 16:56:04") {
|
|
|
|
|
return http.get(`linkPrediction/interaction/community_detail?groupIds=${ids}&dateTime=${time}`)
|
2025-07-25 15:07:08 +08:00
|
|
|
}
|
2025-07-28 15:59:40 +08:00
|
|
|
|
|
|
|
|
//人物互动隐关系预测的社团统计
|
|
|
|
|
export function getInteractionCommunityStatistics() {
|
|
|
|
|
return http.get(`linkPrediction/interaction/community_statistics`)
|
|
|
|
|
}
|
2025-07-23 15:02:10 +08:00
|
|
|
//社交紧密团体识别的用户组列表
|
|
|
|
|
export function getGroupUserListFromTriangle() {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get("/linkPrediction/triangle/group_list")
|
2025-07-23 15:02:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//人物社交隐关系预测用户组列表
|
|
|
|
|
export function getGroupUserListFromSocial() {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get("/linkPrediction/social/group_list")
|
2025-07-23 15:02:10 +08:00
|
|
|
}
|
2025-07-24 16:56:51 +08:00
|
|
|
|
|
|
|
|
//人物互动隐关系预测的贴文列表
|
2025-07-29 16:23:19 +08:00
|
|
|
// export function getInteractionPostList(outoIncrement) {
|
|
|
|
|
// return http.get(`/linkPrediction/interaction/post_list?page=${outoIncrement}`)
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
export function getInteractionPostList(userGroupId) {
|
|
|
|
|
return http.get(`/linkPrediction/user_posts_list?relationId=${userGroupId}`)
|
2025-07-24 16:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//社交紧密团体识别的贴文列表
|
2025-07-29 20:08:42 +08:00
|
|
|
/* export function getSocialPostList(outoIncrement) {
|
2025-07-29 16:25:28 +08:00
|
|
|
return http.get(`/linkPrediction/triangle/post_list?page=${outoIncrement}`)
|
2025-07-29 20:08:42 +08:00
|
|
|
} */
|
2025-07-29 16:25:28 +08:00
|
|
|
// 社交紧密团体的对应紧密关系的帖文--根据relationId来查找
|
|
|
|
|
export function getSocialPostListByRelationId(relationId){
|
|
|
|
|
|
|
|
|
|
return http.get(`/linkPrediction/user_posts_list?relationId=${relationId}`)
|
|
|
|
|
}
|
|
|
|
|
// 社交紧密团体识别的社团统计
|
|
|
|
|
export function getSocialCommunityStatistics() {
|
|
|
|
|
return http.get(`linkPrediction/triangle/community_statistics`)
|
2025-07-24 16:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
2025-07-29 12:13:55 +08:00
|
|
|
// 社交紧密团体的社团列表数据
|
|
|
|
|
export function getSocialCommunityList() {
|
|
|
|
|
return http.get(`/linkPrediction/triangle/community`)
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-29 20:08:42 +08:00
|
|
|
// 社交紧密团体中社团内的
|
|
|
|
|
|
2025-07-29 12:13:55 +08:00
|
|
|
// 社交紧密团体的社团内部节点
|
2025-07-29 16:25:28 +08:00
|
|
|
export function getSocialCommunityDetailNodes(ids, time = "2024-05-16 16:56:04") {
|
|
|
|
|
return http.get(`/linkPrediction/triangle/community_detail?groupIds=${ids}&dateTime=${time}`)
|
2025-07-29 12:13:55 +08:00
|
|
|
}
|
|
|
|
|
|
2025-07-24 16:56:51 +08:00
|
|
|
//人物社交隐关系预测用户组列表
|
|
|
|
|
export function getInteractionHiddenPostList(outoIncrement) {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get(`/linkPrediction/triangle/post_list?page=${outoIncrement}`)
|
2025-07-24 16:56:51 +08:00
|
|
|
}
|
2025-07-25 15:07:08 +08:00
|
|
|
|
|
|
|
|
//
|