121212
This commit is contained in:
@@ -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 });
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user