This commit is contained in:
Taric Xin
2022-04-13 10:02:09 +08:00
parent 0ef44d20f2
commit 553c9dceb1
3 changed files with 6 additions and 6 deletions

View File

@ -90,14 +90,14 @@ export class OrderManagementBulkeDetailComponent implements OnInit {
markerLabel: '装',
color: 'blue',
position: [res.startingPoint.longitude, res.startingPoint.latitude],
title: '发货地:' + res.startingPoint.detailedAddress,
title: `发货地:${res.startingPoint.province}${res.startingPoint.city}${res.startingPoint.area}${res.startingPoint.detailedAddress}`,
time: '计划出发时间:' + res.loadPlanTime
},
{
markerLabel: '卸',
color: 'red',
position: [res.endPoint.longitude, res.endPoint.latitude],
title: '卸货地地:' + res.endPoint.detailedAddress,
title: `卸货地:${res.endPoint.province}${res.endPoint.city}${res.endPoint.area}${res.endPoint.detailedAddress}`,
time: '计划卸货时间:' + res.unloadPlanTime
}
];