dianlixunjian
徐景良 2024-07-30 12:09:17 +08:00
parent 31a709edb3
commit d33ee2d12d
3 changed files with 3 additions and 3 deletions

View File

@ -658,7 +658,7 @@
if(props.showInfoData.geomid.match(",")){ if(props.showInfoData.geomid.match(",")){
geomids = props.showInfoData.geomid.split(","); geomids = props.showInfoData.geomid.split(",");
}else{ }else{
geomids = props.showInfoData.geomid; geomids = [props.showInfoData.geomid];
} }
let getGeomPrams = { let getGeomPrams = {
TableName: "drone_shp_data", TableName: "drone_shp_data",

View File

@ -870,7 +870,7 @@
if(gids.match(",")){ if(gids.match(",")){
geomids = gids.split(","); geomids = gids.split(",");
}else{ }else{
geomids = gids; geomids = [gids];
} }
let getGeomPrams = { let getGeomPrams = {
TableName: layer, TableName: layer,

View File

@ -483,7 +483,7 @@
if(gids.match(",")){ if(gids.match(",")){
geomids = gids.split(","); geomids = gids.split(",");
}else{ }else{
geomids = gids; geomids = [gids];
} }
let getGeomPrams = { let getGeomPrams = {
TableName: layer, TableName: layer,