121212
This commit is contained in:
@@ -31,6 +31,14 @@ export class EquService {
|
||||
return await ApiService.Request("get", "/Equ/GetUserOnEqu");
|
||||
}
|
||||
|
||||
/**
|
||||
* 鉴定装备
|
||||
* GET /Equ/ApprEqu
|
||||
*/
|
||||
static async ApprEqu(ueId: string) {
|
||||
return await ApiService.Request("get", "/Equ/ApprEqu", { ueId });
|
||||
}
|
||||
|
||||
/**
|
||||
* 穿/卸装备
|
||||
* GET /Equ/DownOrUpEqu
|
||||
@@ -89,4 +97,20 @@ export class EquService {
|
||||
static async HandleEquUp(ueId: string, needs: string) {
|
||||
return await ApiService.Request("post", "/Equ/HandleEquUp", { ueId, needs });
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取洗练装备属性
|
||||
* GET /Equ/GetEquQualityInfo
|
||||
*/
|
||||
static async GetEquQualityInfo(ueId: string) {
|
||||
return await ApiService.Request("get", "/Equ/GetEquQualityInfo", { ueId });
|
||||
}
|
||||
|
||||
/**
|
||||
* 洗练装备
|
||||
* GET /Equ/HandleEquQuality
|
||||
*/
|
||||
static async HandleEquQuality(ueId: string) {
|
||||
return await ApiService.Request("get", "/Equ/HandleEquQuality", { ueId });
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user