This commit is contained in:
Putoo
2026-06-16 18:30:53 +08:00
parent 5d4b5c989a
commit 5cd6151b96
14 changed files with 413 additions and 57 deletions

View File

@@ -38,4 +38,20 @@ export class EquService {
static async DownOrUpEqu(ueId: string, de: string) {
return await ApiService.Request("get", "/Equ/DownOrUpEqu", { ueId, de });
}
/**
* 获取可穿戴装备
* GET /Equ/GetCanOnEqu
*/
static async GetCanOnEqu(type: number) {
return await ApiService.Request("get", "/Equ/GetCanOnEqu", { type });
}
/**
* 获取激活套装属性
* GET /Equ/GetUserOnSuitInfo
*/
static async GetUserOnSuitInfo(suitCode: string) {
return await ApiService.Request("get", "/Equ/GetUserOnSuitInfo", { suitCode });
}
}