17 lines
503 B
JavaScript
17 lines
503 B
JavaScript
|
|
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");
|
||
|
|
}
|