This commit is contained in:
Putoo
2026-05-26 18:38:55 +08:00
parent 61cf882b66
commit 6b7193b4c0
33 changed files with 1021 additions and 42 deletions

View File

@@ -0,0 +1,17 @@
export class UserService {
/**
* 获取个人资料信息
* GET /User/User/GetUserInfo
*/
static async GetUserInfo() {
return await ApiService.Request("get", "/User/User/GetUserInfo");
}
/**
* 获取用户资料
* GET /User/User/GetHomeInfo
*/
static async GetHomeInfo(no: string) {
return await ApiService.Request("get", "/User/User/GetHomeInfo", { no });
}
}