fix bug
This commit is contained in:
		| @ -1,7 +1,7 @@ | ||||
| <!-- | ||||
|  * @Author: your name | ||||
|  * @Date: 2021-12-03 15:31:52 | ||||
|  * @LastEditTime : 2022-03-30 17:16:40 | ||||
|  * @LastEditTime : 2022-04-01 11:12:17 | ||||
|  * @LastEditors  : Shiming | ||||
|  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE | ||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\vehicle-detail\\vehicle-detail.component.html | ||||
| @ -29,7 +29,7 @@ | ||||
|         <sv label="货主">{{ i?.shippername }} </sv> | ||||
|         <sv label="所属项目">{{i?.enterpriseProjectName}}</sv> | ||||
|         <sv label="服务类型">{{i?.serviceTypeLabel}}</sv> | ||||
|         <sv label="调度员">{{i?.dispatchName}} /{{i?.dispatchPhone}}</sv> | ||||
|         <sv label="调度员">{{i?.dispatchName}}{{ i?.dispatchPhone ? '/' + i?.dispatchPhone : '' }}</sv> | ||||
|         <sv label="货源编号">{{ i?.resourceCode }} </sv> | ||||
|         <sv label="承诺付款天数">{{ i?.paymentDays }}</sv> | ||||
|      </div> | ||||
| @ -78,10 +78,10 @@ | ||||
|       {{i?.goodsInfos?.[0]?.carModelLabel}}{{ i?.goodsInfos?.[0]?.carLength ? '/' + i?.goodsInfos?.[0]?.carLength + '米': ''}} | ||||
|     </sv> | ||||
|     <sv label="承运司机"> | ||||
|       {{i?.driverVo?.name}}/{{i?.driverVo?.phone}} | ||||
|       {{i?.driverVo?.name}}{{ i?.driverVo?.phone ? '/' + i?.driverVo?.phone : ''}} | ||||
|     </sv> | ||||
|     <sv label="车型车长载重"> | ||||
|       {{i?.carVO?.carModelLabel}},{{i?.carVO?.carLengthLabel}}米,{{i?.carVO?.carLoad ? i?.carVO?.carLoad +'吨': ''}} | ||||
|       {{ i?.carVO?.carModelLabel ? i?.carVO?.carModelLabel +',': ''}}{{ i?.carVO?.carLengthLabel ? i?.carVO?.carLengthLabel +'米,': ''}}{{i?.carVO?.carLoad ? i?.carVO?.carLoad +'吨': ''}} | ||||
|     </sv> | ||||
|     <sv label="计划装货时间"> | ||||
|       {{i?.loadingTime}} | ||||
|  | ||||
| @ -1,7 +1,7 @@ | ||||
| /* | ||||
|  * @Author: your name | ||||
|  * @Date: 2021-12-03 15:31:52 | ||||
|  * @LastEditTime : 2022-04-01 10:49:30 | ||||
|  * @LastEditTime : 2022-04-01 11:11:14 | ||||
|  * @LastEditors  : Shiming | ||||
|  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE | ||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\vehicle-detail\\vehicle-detail.component.ts | ||||
| @ -26,7 +26,7 @@ import { WaybillManagementServe } from '../../services/waybill-management.servic | ||||
| export class WaybillManagementVehicleDetailComponent implements OnInit, OnDestroy { | ||||
|   id = this.route.snapshot.params.id; | ||||
|   MapList: any[] = []; | ||||
|   trajectory = 'car'; | ||||
|   trajectory = 'car';  | ||||
|   mapList: any[] = []; //地图点位数据组 | ||||
|   addressItems: any[] = []; //打点地址数据组 | ||||
|   i: any; | ||||
|  | ||||
		Reference in New Issue
	
	Block a user