This commit is contained in:
Putoo
2026-05-29 19:06:51 +08:00
parent 69ae1e3174
commit bd1535aee9
48 changed files with 1571 additions and 133 deletions

View File

@@ -0,0 +1,17 @@
export class RelationService {
/**
* 关系列表数据
* GET /User/Relation/GetRelation
*/
static async GetRelation(type: number, page: number) {
return await ApiService.Request("get", "/User/Relation/GetRelation", { type, page });
}
/**
* FriendHandle
* GET /User/Relation/FriendHandle
*/
static async FriendHandle(no: string) {
return await ApiService.Request("get", "/User/Relation/FriendHandle", { no });
}
}