云查询增加参数

dianlixunjian
刘妍 2024-09-20 15:56:24 +08:00
parent a7f8ee2cdd
commit cdc1e595d8
1 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@ enum Api {
LoadCloudLandQueryById = '/api/DroneCloudQuery/LoadCloudLandQueryById',
}
export function AddDroneTask(params: { geomid: string, caseno: string }) {
export function AddDroneTask(params: { geomid: string; caseno: string }) {
return defHttp.post({
url: Api.AddDroneTask + "?geomid=" + params.geomid,
url: Api.AddDroneTask + '?geomid=' + params.geomid + '&caseno=' + params.caseno,
params,
});
}