fix bug
This commit is contained in:
@ -89,7 +89,7 @@
|
|||||||
<div *ngFor="let i of item?.goodsInfoVOList">
|
<div *ngFor="let i of item?.goodsInfoVOList">
|
||||||
<p>货物名称:{{i?.goodsName}}</p>
|
<p>货物名称:{{i?.goodsName}}</p>
|
||||||
<p>重量/体积:{{i?.weight}}吨/{{i?.volume}}方</p>
|
<p>重量/体积:{{i?.weight}}吨/{{i?.volume}}方</p>
|
||||||
<p>车型/车长:{{i?.maxWeight}}/ {{i?.maxCube}}</p>
|
<p>车型/车长:{{i?.carModel}}/ {{i?.carLength}}</p>
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</st>
|
</st>
|
||||||
|
|||||||
@ -66,7 +66,7 @@
|
|||||||
</sv>
|
</sv>
|
||||||
<sv label="货物数量"> {{ item?.weight }}吨 | {{ item?.volume }}方 </sv>
|
<sv label="货物数量"> {{ item?.weight }}吨 | {{ item?.volume }}方 </sv>
|
||||||
<sv label="剩余"> {{ 10 }}吨 | {{ 10 }}方 </sv>
|
<sv label="剩余"> {{ 10 }}吨 | {{ 10 }}方 </sv>
|
||||||
<sv label="用车需求"> {{ item?.maxWeight }} | {{ item?.maxCube }}米 </sv>
|
<sv label="用车需求"> {{ item?.carModel }} | {{ item?.carLength }}米 </sv>
|
||||||
<sv label="承运信息">
|
<sv label="承运信息">
|
||||||
{{ i?.carrierInformationVO?.driverName }} / {{ i?.carrierInformationVO?.driverTelephone }} /
|
{{ i?.carrierInformationVO?.driverName }} / {{ i?.carrierInformationVO?.driverTelephone }} /
|
||||||
{{ i?.carrierInformationVO?.driverLicensePlate }}
|
{{ i?.carrierInformationVO?.driverLicensePlate }}
|
||||||
|
|||||||
@ -353,7 +353,7 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
|
|||||||
placeholder: '请输入'
|
placeholder: '请输入'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maxWeight: {
|
carModel: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '车型/车长',
|
title: '车型/车长',
|
||||||
ui: {
|
ui: {
|
||||||
@ -364,7 +364,7 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
|
|||||||
errors: { required: '请选择车型' }
|
errors: { required: '请选择车型' }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maxCube: {
|
carLength: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '',
|
title: '',
|
||||||
ui: {
|
ui: {
|
||||||
@ -376,7 +376,7 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
required: ['weight', 'maxWeight', 'maxCube', 'freightPrice', 'rule', 'settlementBasis']
|
required: ['weight', 'carModel', 'carLength', 'freightPrice', 'rule', 'settlementBasis']
|
||||||
};
|
};
|
||||||
this.ui4 = {
|
this.ui4 = {
|
||||||
'*': {
|
'*': {
|
||||||
@ -401,10 +401,10 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
|
|||||||
$number: {
|
$number: {
|
||||||
grid: { span: 8 }
|
grid: { span: 8 }
|
||||||
},
|
},
|
||||||
$maxWeight: {
|
$carModel: {
|
||||||
grid: { span: 12 }
|
grid: { span: 12 }
|
||||||
},
|
},
|
||||||
$maxCube: {
|
$carLength: {
|
||||||
grid: { span: 12 }
|
grid: { span: 12 }
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -680,8 +680,8 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
...this.sf4.value,
|
...this.sf4.value,
|
||||||
...this.sf3.value,
|
...this.sf3.value,
|
||||||
maxWeight: this.sf4.value.maxWeight.join(','),
|
carModel: this.sf4.value.carModel.join(','),
|
||||||
maxCube: this.sf4.value.maxCube.join(',')
|
carLength: this.sf4.value.carLength.join(',')
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
@ -926,8 +926,8 @@ export class SupplyManagementBulkPublishComponent implements OnInit {
|
|||||||
weight: res?.goodsInfoVOList[0]?.weight || '',
|
weight: res?.goodsInfoVOList[0]?.weight || '',
|
||||||
volume: res?.goodsInfoVOList[0]?.volume || '',
|
volume: res?.goodsInfoVOList[0]?.volume || '',
|
||||||
number: res?.goodsInfoVOList[0]?.number || '',
|
number: res?.goodsInfoVOList[0]?.number || '',
|
||||||
maxWeight: res?.goodsInfoVOList[0]?.maxWeight?.split(',') || '',
|
carModel: res?.goodsInfoVOList[0]?.carModel?.split(',') || '',
|
||||||
maxCube: res?.goodsInfoVOList[0]?.maxCube?.split(',') || ''
|
carLength: res?.goodsInfoVOList[0]?.carLength?.split(',') || ''
|
||||||
};
|
};
|
||||||
if (this.PageStatus === '大宗修改') {
|
if (this.PageStatus === '大宗修改') {
|
||||||
this.sf4data.id = res?.goodsInfoVOList[0]?.id;
|
this.sf4data.id = res?.goodsInfoVOList[0]?.id;
|
||||||
|
|||||||
@ -373,7 +373,7 @@ export class SupplyManagementBulkReleasePublishComponent implements OnInit {
|
|||||||
placeholder: '请输入'
|
placeholder: '请输入'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maxWeight: {
|
carModel: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '车型/车长',
|
title: '车型/车长',
|
||||||
default: [],
|
default: [],
|
||||||
@ -385,7 +385,7 @@ export class SupplyManagementBulkReleasePublishComponent implements OnInit {
|
|||||||
errors: { required: '请选择车型' }
|
errors: { required: '请选择车型' }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maxCube: {
|
carLength: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '',
|
title: '',
|
||||||
default: [],
|
default: [],
|
||||||
@ -398,7 +398,7 @@ export class SupplyManagementBulkReleasePublishComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
required: ['weight', 'maxWeight', 'maxCube', 'freightPrice', 'rule', 'settlementBasis']
|
required: ['weight', 'carModel', 'carLength', 'freightPrice', 'rule', 'settlementBasis']
|
||||||
};
|
};
|
||||||
this.ui4 = {
|
this.ui4 = {
|
||||||
'*': {
|
'*': {
|
||||||
@ -423,10 +423,10 @@ export class SupplyManagementBulkReleasePublishComponent implements OnInit {
|
|||||||
$number: {
|
$number: {
|
||||||
grid: { span: 8 }
|
grid: { span: 8 }
|
||||||
},
|
},
|
||||||
$maxWeight: {
|
$carModel: {
|
||||||
grid: { span: 12 }
|
grid: { span: 12 }
|
||||||
},
|
},
|
||||||
$maxCube: {
|
$carLength: {
|
||||||
grid: { span: 12 }
|
grid: { span: 12 }
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -598,8 +598,8 @@ export class SupplyManagementBulkReleasePublishComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
...sf3Values,
|
...sf3Values,
|
||||||
...this.sf4.value,
|
...this.sf4.value,
|
||||||
maxWeight: this.sf4.value.maxWeight.join(','),
|
carModel: this.sf4.value.carModel.join(','),
|
||||||
maxCube: this.sf4.value.maxCube.join(',')
|
carLength: this.sf4.value.carLength.join(',')
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
const params = {
|
const params = {
|
||||||
|
|||||||
@ -67,10 +67,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</nz-form-item>
|
</nz-form-item>
|
||||||
</div>
|
</div>
|
||||||
<button nz-button nzType="primary" (click)="addStartInfo($event)">
|
<div style="display: flex; justify-content: center;">
|
||||||
<i nz-icon nzType="plus"></i>
|
<button nz-button nzType="primary" (click)="addStartInfo($event)">
|
||||||
添加装货地
|
<i nz-icon nzType="plus"></i>
|
||||||
</button>
|
添加装货地
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div nz-col [nzSpan]="8">
|
<div nz-col [nzSpan]="8">
|
||||||
<div style="display: flex; justify-content: center">
|
<div style="display: flex; justify-content: center">
|
||||||
@ -126,11 +128,13 @@
|
|||||||
</div>
|
</div>
|
||||||
</nz-form-item>
|
</nz-form-item>
|
||||||
</div>
|
</div>
|
||||||
|
<div style="display: flex; justify-content: center;">
|
||||||
<button nz-button nzType="primary" (click)="addEndInfo($event)">
|
<button nz-button nzType="primary" (click)="addEndInfo($event)">
|
||||||
<i nz-icon nzType="plus"></i>
|
<i nz-icon nzType="plus"></i>
|
||||||
添加卸货地
|
添加卸货地
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div nz-row [nzGutter]="24" style="margin-top: 24px">
|
<div nz-row [nzGutter]="24" style="margin-top: 24px">
|
||||||
<div nz-col [nzSpan]="9">
|
<div nz-col [nzSpan]="9">
|
||||||
@ -142,6 +146,7 @@
|
|||||||
nzFormat="yyyy-MM-dd HH:mm:ss"
|
nzFormat="yyyy-MM-dd HH:mm:ss"
|
||||||
formControlName="loadingTime"
|
formControlName="loadingTime"
|
||||||
[(ngModel)]="loadingTime"
|
[(ngModel)]="loadingTime"
|
||||||
|
(ngModelChange)="changeLO(loadingTime)"
|
||||||
></nz-date-picker>
|
></nz-date-picker>
|
||||||
</nz-form-control>
|
</nz-form-control>
|
||||||
</nz-form-item>
|
</nz-form-item>
|
||||||
@ -155,6 +160,7 @@
|
|||||||
nzFormat="yyyy-MM-dd HH:mm:ss"
|
nzFormat="yyyy-MM-dd HH:mm:ss"
|
||||||
formControlName="unloadingTime"
|
formControlName="unloadingTime"
|
||||||
[(ngModel)]="unloadingTime"
|
[(ngModel)]="unloadingTime"
|
||||||
|
(ngModelChange)="changeUn(unloadingTime)"
|
||||||
></nz-date-picker>
|
></nz-date-picker>
|
||||||
</nz-form-control>
|
</nz-form-control>
|
||||||
</nz-form-item>
|
</nz-form-item>
|
||||||
|
|||||||
@ -316,7 +316,7 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
|
|||||||
placeholder: '请输入'
|
placeholder: '请输入'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maxWeight: {
|
carModel: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '车型/车长',
|
title: '车型/车长',
|
||||||
ui: {
|
ui: {
|
||||||
@ -327,7 +327,7 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
|
|||||||
errors: { required: '请选择车型' }
|
errors: { required: '请选择车型' }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maxCube: {
|
carLength: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '',
|
title: '',
|
||||||
ui: {
|
ui: {
|
||||||
@ -339,7 +339,7 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
required: ['weight', 'maxWeight', 'maxCube']
|
required: ['weight', 'carModel', 'carLength']
|
||||||
};
|
};
|
||||||
this.ui4 = {
|
this.ui4 = {
|
||||||
'*': {
|
'*': {
|
||||||
@ -355,10 +355,10 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
|
|||||||
$number: {
|
$number: {
|
||||||
grid: { span: 8 }
|
grid: { span: 8 }
|
||||||
},
|
},
|
||||||
$maxWeight: {
|
$carModel: {
|
||||||
grid: { span: 12 }
|
grid: { span: 12 }
|
||||||
},
|
},
|
||||||
$maxCube: {
|
$carLength: {
|
||||||
grid: { span: 12 }
|
grid: { span: 12 }
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -871,8 +871,8 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
...this.sf4.value,
|
...this.sf4.value,
|
||||||
...this.sf3.value,
|
...this.sf3.value,
|
||||||
maxWeight: this.sf4.value.maxWeight.join(','),
|
carModel: this.sf4.value.carModel.join(','),
|
||||||
maxCube: this.sf4.value.maxCube.join(',')
|
carLength: this.sf4.value.carLength.join(',')
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
@ -1076,8 +1076,8 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
|
|||||||
weight: res?.goodsInfoVOList[0]?.weight,
|
weight: res?.goodsInfoVOList[0]?.weight,
|
||||||
volume: res?.goodsInfoVOList[0]?.volume,
|
volume: res?.goodsInfoVOList[0]?.volume,
|
||||||
vehicleDemand: res?.goodsInfoVOList[0]?.vehicleDemand,
|
vehicleDemand: res?.goodsInfoVOList[0]?.vehicleDemand,
|
||||||
maxCube: res?.goodsInfoVOList[0]?.maxCube?.split(','),
|
carLength: res?.goodsInfoVOList[0]?.carLength?.split(','),
|
||||||
maxWeight: res?.goodsInfoVOList[0]?.maxWeight?.split(',') || '',
|
carModel: res?.goodsInfoVOList[0]?.carModel?.split(',') || '',
|
||||||
number: res?.goodsInfoVOList[0]?.number,
|
number: res?.goodsInfoVOList[0]?.number,
|
||||||
goodsTypeName: res?.goodsInfoVOList[0]?.goodsTypeName,
|
goodsTypeName: res?.goodsInfoVOList[0]?.goodsTypeName,
|
||||||
modifyUserId: res?.goodsInfoVOList[0]?.modifyUserId,
|
modifyUserId: res?.goodsInfoVOList[0]?.modifyUserId,
|
||||||
@ -1171,4 +1171,54 @@ export class SupplyManagementOnecarPublishComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
changeUn(value: any) {
|
||||||
|
console.log(value)
|
||||||
|
if (typeof value !== 'string') {
|
||||||
|
var c = new Date(value);
|
||||||
|
value =
|
||||||
|
c.getFullYear() +
|
||||||
|
'-' +
|
||||||
|
this.addPreZero(c.getMonth() + 1) +
|
||||||
|
'-' +
|
||||||
|
this.addPreZero(c.getDate()) +
|
||||||
|
' ' +
|
||||||
|
this.addPreZero(c.getHours()) +
|
||||||
|
':' +
|
||||||
|
this.addPreZero(c.getMinutes()) +
|
||||||
|
':' +
|
||||||
|
this.addPreZero(c.getSeconds());
|
||||||
|
}
|
||||||
|
console.log(value)
|
||||||
|
console.log(this.loadingTime)
|
||||||
|
console.log(this.loadingTime > value)
|
||||||
|
if(this.loadingTime > value) {
|
||||||
|
console.log('错误')
|
||||||
|
this.unloadingTime = ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
changeLO(value: any) {
|
||||||
|
console.log(value)
|
||||||
|
if (typeof value !== 'string') {
|
||||||
|
var c = new Date(value);
|
||||||
|
value =
|
||||||
|
c.getFullYear() +
|
||||||
|
'-' +
|
||||||
|
this.addPreZero(c.getMonth() + 1) +
|
||||||
|
'-' +
|
||||||
|
this.addPreZero(c.getDate()) +
|
||||||
|
' ' +
|
||||||
|
this.addPreZero(c.getHours()) +
|
||||||
|
':' +
|
||||||
|
this.addPreZero(c.getMinutes()) +
|
||||||
|
':' +
|
||||||
|
this.addPreZero(c.getSeconds());
|
||||||
|
}
|
||||||
|
console.log(value)
|
||||||
|
console.log(this.unloadingTime)
|
||||||
|
console.log(this.unloadingTime > value)
|
||||||
|
if(this.unloadingTime > value) {
|
||||||
|
console.log('错误')
|
||||||
|
this.loadingTime = ''
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -76,11 +76,13 @@
|
|||||||
</div>
|
</div>
|
||||||
<div nz-row>
|
<div nz-row>
|
||||||
<div nz-col [nzSpan]="4"></div>
|
<div nz-col [nzSpan]="4"></div>
|
||||||
|
<div style="display: flex; justify-content: center;">
|
||||||
<button nz-button nzType="primary" (click)="addStartInfo()">
|
<button nz-button nzType="primary" (click)="addStartInfo()">
|
||||||
<i nz-icon nzType="plus"></i>
|
<i nz-icon nzType="plus"></i>
|
||||||
添加装货地
|
添加装货地
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div nz-col [nzSpan]="4">
|
<div nz-col [nzSpan]="4">
|
||||||
<div style="display: flex; justify-content: center">
|
<div style="display: flex; justify-content: center">
|
||||||
@ -141,11 +143,13 @@
|
|||||||
</div>
|
</div>
|
||||||
<div nz-row>
|
<div nz-row>
|
||||||
<div nz-col [nzSpan]="4"></div>
|
<div nz-col [nzSpan]="4"></div>
|
||||||
|
<div style="display: flex; justify-content: center;">
|
||||||
<button nz-button nzType="primary" (click)="addEndInfo()">
|
<button nz-button nzType="primary" (click)="addEndInfo()">
|
||||||
<i nz-icon nzType="plus"></i>
|
<i nz-icon nzType="plus"></i>
|
||||||
添加卸货地
|
添加卸货地
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div nz-row [nzGutter]="24" style="margin-top: 24px">
|
<div nz-row [nzGutter]="24" style="margin-top: 24px">
|
||||||
|
|||||||
@ -333,7 +333,7 @@ export class SupplyManagementReleasePublishComponent implements OnInit {
|
|||||||
placeholder: '请输入'
|
placeholder: '请输入'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maxWeight: {
|
carModel: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '车型/车长',
|
title: '车型/车长',
|
||||||
ui: {
|
ui: {
|
||||||
@ -344,7 +344,7 @@ export class SupplyManagementReleasePublishComponent implements OnInit {
|
|||||||
errors: { required: '请选择车型' }
|
errors: { required: '请选择车型' }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
maxCube: {
|
carLength: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '',
|
title: '',
|
||||||
ui: {
|
ui: {
|
||||||
@ -356,7 +356,7 @@ export class SupplyManagementReleasePublishComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
required: ['weight', 'maxWeight', 'maxCube']
|
required: ['weight', 'carModel', 'carLength']
|
||||||
};
|
};
|
||||||
this.ui4 = {
|
this.ui4 = {
|
||||||
'*': {
|
'*': {
|
||||||
@ -372,10 +372,10 @@ export class SupplyManagementReleasePublishComponent implements OnInit {
|
|||||||
$number: {
|
$number: {
|
||||||
grid: { span: 8 }
|
grid: { span: 8 }
|
||||||
},
|
},
|
||||||
$maxWeight: {
|
$carModel: {
|
||||||
grid: { span: 12 }
|
grid: { span: 12 }
|
||||||
},
|
},
|
||||||
$maxCube: {
|
$carLength: {
|
||||||
grid: { span: 12 }
|
grid: { span: 12 }
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -781,8 +781,8 @@ export class SupplyManagementReleasePublishComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
...this.sf4.value,
|
...this.sf4.value,
|
||||||
...this.sf3.value,
|
...this.sf3.value,
|
||||||
maxWeight: this.sf4.value.maxWeight.join(','),
|
carModel: this.sf4.value.carModel.join(','),
|
||||||
maxCube: this.sf4.value.maxCube.join(',')
|
carLength: this.sf4.value.carLength.join(',')
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
// 运费信息
|
// 运费信息
|
||||||
|
|||||||
@ -74,7 +74,7 @@
|
|||||||
{{i?.goodsInfos?.[0]?.weight}}吨,{{i?.goodsInfos?.[0]?.volume}}方,{{i?.goodsInfos?.[0]?.number}}件
|
{{i?.goodsInfos?.[0]?.weight}}吨,{{i?.goodsInfos?.[0]?.volume}}方,{{i?.goodsInfos?.[0]?.number}}件
|
||||||
</sv>
|
</sv>
|
||||||
<sv label="用车需求">
|
<sv label="用车需求">
|
||||||
{{i?.goodsInfos?.[0]?.maxWeightLabel}}/{{i?.goodsInfos?.[0]?.maxCube}}
|
{{i?.goodsInfos?.[0]?.carModelLabel}}/{{i?.goodsInfos?.[0]?.carLength}}
|
||||||
</sv>
|
</sv>
|
||||||
<sv label="承运司机">
|
<sv label="承运司机">
|
||||||
{{i?.driver?.name}}/{{i?.driver?.phone}}
|
{{i?.driver?.name}}/{{i?.driver?.phone}}
|
||||||
|
|||||||
@ -74,7 +74,7 @@
|
|||||||
{{i?.goodsInfos?.[0]?.weight}}吨,{{i?.goodsInfos?.[0]?.volume}}方,{{i?.goodsInfos?.[0]?.number}}件
|
{{i?.goodsInfos?.[0]?.weight}}吨,{{i?.goodsInfos?.[0]?.volume}}方,{{i?.goodsInfos?.[0]?.number}}件
|
||||||
</sv>
|
</sv>
|
||||||
<sv label="用车需求">
|
<sv label="用车需求">
|
||||||
{{i?.goodsInfos?.[0]?.maxWeightLabel}}/{{i?.goodsInfos?.[0]?.maxCube}}
|
{{i?.goodsInfos?.[0]?.carModelLabel}}/{{i?.goodsInfos?.[0]?.carLength}}
|
||||||
</sv>
|
</sv>
|
||||||
<sv label="承运司机">
|
<sv label="承运司机">
|
||||||
{{i?.driverVo?.name}}/{{i?.driverVo?.phone}}
|
{{i?.driverVo?.name}}/{{i?.driverVo?.phone}}
|
||||||
|
|||||||
Reference in New Issue
Block a user