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(",")){
geomids = props.showInfoData.geomid.split(",");
}else{
geomids = props.showInfoData.geomid;
geomids = [props.showInfoData.geomid];
}
let getGeomPrams = {
TableName: "drone_shp_data",

View File

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

View File

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