This commit is contained in:
wangshiming
2022-04-11 19:04:47 +08:00
parent 0690582b2c
commit 40cce2781b
6 changed files with 58 additions and 33 deletions

View File

@ -999,6 +999,7 @@ export class SupplyManagementReleasePublishComponent implements OnInit {
nzContent: AmapPoiPickerComponent,
nzWidth: 900,
nzOnOk: item => {
if(item?.poi) {
const poi = item.poi;
const locList = poi.pois;
switch (type) {
@ -1029,6 +1030,9 @@ export class SupplyManagementReleasePublishComponent implements OnInit {
this.getInsurersPrice(); // 计算保费金额
});
}
} else {
this.service.msgSrv.warning('请重新手动选择地址!')
}
}
});
}