2025-07-23 15:02:10 +08:00
|
|
|
import http from "@/utils/http";
|
|
|
|
|
|
|
|
|
|
//人物互动隐关系预测的用户组列表
|
|
|
|
|
export function getGroupUserListFromInteraction() {
|
|
|
|
|
return http.get("/linkPrediction/interaction/group_list");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//社交紧密团体识别的用户组列表
|
|
|
|
|
export function getGroupUserListFromTriangle() {
|
|
|
|
|
return http.get("/linkPrediction/triangle/group_list");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//人物社交隐关系预测用户组列表
|
|
|
|
|
export function getGroupUserListFromSocial() {
|
|
|
|
|
return http.get("/linkPrediction/social/group_list");
|
|
|
|
|
}
|
2025-07-24 16:56:51 +08:00
|
|
|
|
|
|
|
|
//人物互动隐关系预测的贴文列表
|
|
|
|
|
export function getInteractionPostList(outoIncrement) {
|
|
|
|
|
return http.get(`/linkPrediction/interaction/post_list?page=${outoIncrement}`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//社交紧密团体识别的贴文列表
|
|
|
|
|
export function getSocialPostList(outoIncrement) {
|
|
|
|
|
return http.get(`/linkPrediction/social/post_list?page=${outoIncrement}`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//人物社交隐关系预测用户组列表
|
|
|
|
|
export function getInteractionHiddenPostList(outoIncrement) {
|
|
|
|
|
return http.get(`/linkPrediction/triangle/post_list?page=${outoIncrement}`);
|
|
|
|
|
}
|