This commit is contained in:
wangshiming
2022-03-04 15:12:13 +08:00
parent 3341787481
commit ea95821644
2 changed files with 16 additions and 16 deletions

View File

@ -1025,7 +1025,7 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
this.sf4data.id = res?.goodsInfoVOList[0]?.id;
}
// 计算里程,时间
if (this.startInfo[0]?.area && this.endInfo[0]?.area) {
if (this.startInfo[0]?.detailedAddress && this.endInfo[0]?.detailedAddress) {
this.amapService.drivingCompute([...this.startInfo], [...this.endInfo]).subscribe(res => {
this.totalDistance = res.distance;
this.totalTime = res.time;
@ -1104,7 +1104,7 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
});
// 计算里程,时间
if (this.startInfo[0]?.area && this.endInfo[0]?.area) {
if (this.startInfo[0]?.detailedAddress && this.endInfo[0]?.detailedAddress) {
this.amapService.drivingCompute([...this.startInfo], [...this.endInfo]).subscribe(res => {
this.totalDistance = res.distance;
this.totalTime = res.time;

View File

@ -840,7 +840,7 @@ export class SupplyManagementBulkReleasePublishComponent implements OnInit {
});
// 计算里程,时间
if (this.startInfo[0]?.area && this.endInfo[0]?.area) {
if (this.startInfo[0]?.detailedAddress && this.endInfo[0]?.detailedAddress) {
this.amapService.drivingCompute([...this.startInfo], [...this.endInfo]).subscribe(res => {
this.totalDistance = res.distance;
this.totalTime = res.time;