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

@ -838,6 +838,7 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
nzContent: AmapPoiPickerComponent,
nzWidth: 900,
nzOnOk: item => {
if(item?.poi) {
const poi = item.poi;
const locList = poi.location.toString().split(',');
switch (type) {
@ -869,6 +870,9 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
this.totalTime = res.time;
});
}
} else {
this.service.msgSrv.warning('请重新手动选择地址!')
}
}
});
}