From a3fdef8b18f04e3a77609e43d7e4b7f89469fecb Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Wed, 2 Mar 2022 15:54:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3GIS=E6=A8=A1=E7=B3=8A?= =?UTF-8?q?=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../gis-labeling/gis-labeling.component.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/app/gis-management/gis-labeling/gis-labeling.component.ts b/src/app/gis-management/gis-labeling/gis-labeling.component.ts index 76462ed..99eddec 100644 --- a/src/app/gis-management/gis-labeling/gis-labeling.component.ts +++ b/src/app/gis-management/gis-labeling/gis-labeling.component.ts @@ -1175,6 +1175,11 @@ export class GisLabelingComponent implements OnInit { this.snackBar.open(`搜索目标结果为${data.items.length}个`, '确定', config); } else { //高德api 搜索 placeSearch.search(that.searchText, (status, result)=>{ + if (status != "complete") { + this.snackBar.open(`搜索目标结果为0个`, '确定', config); + console.log(status,result) + return + } if (result.poiList.pois.length) { let resultList = [] result.poiList.pois.forEach((element: any) => { @@ -1295,6 +1300,13 @@ export class GisLabelingComponent implements OnInit { //基本信息 baseInformation(e) { + if (!e.id) { + const config = new MatSnackBarConfig(); + config.verticalPosition = 'top'; + config.duration = 3000 + this.snackBar.open('暂无单位数据', '确定', config); + return + } this.leftDivState = true this.showLeftDiv = true this.appLeft.selectBaseInfo(e) //调用子组件方法