This commit is contained in:
Putoo
2026-06-09 17:51:12 +08:00
parent 9f3e4871a4
commit 46bacd1e38
10 changed files with 279 additions and 24 deletions

View File

@@ -6,4 +6,28 @@ export class EquService {
static async GetEquInfo(equId: number, ueId: string) {
return await ApiService.Request("get", "/Equ/GetEquInfo", { equId, ueId });
}
/**
* 获取套装详情
* GET /Equ/GetEquSuitInfo
*/
static async GetEquSuitInfo(suitCode: string) {
return await ApiService.Request("get", "/Equ/GetEquSuitInfo", { suitCode });
}
/**
* 绑定操作
* GET /Equ/EquLock
*/
static async EquLock(ueId: string) {
return await ApiService.Request("get", "/Equ/EquLock", { ueId });
}
/**
* 穿/卸装备
* GET /Equ/DownOrUpEqu
*/
static async DownOrUpEqu(ueId: string) {
return await ApiService.Request("get", "/Equ/DownOrUpEqu", { ueId });
}
}