车辆对接

This commit is contained in:
wangshiming
2022-01-13 10:14:43 +08:00
parent df8c32b0eb
commit f216c25f7c
8 changed files with 38 additions and 17 deletions

View File

@ -63,6 +63,7 @@ tabs = {
stayQuantity: 0,
signQuantity: 0,
compolatelQuantity: 0,
GoingQuantity: 0
};
resourceStatus: any;
constructor(
@ -88,7 +89,7 @@ resourceStatus: any;
get reqParams() {
const a:any = {};
if(this.resourceStatus) {
a.billStatus = this.resourceStatus + 1;
a.billStatus = this.resourceStatus;
}
return {
...a,
@ -114,6 +115,8 @@ resourceStatus: any;
this.tabs.stayQuantity = element.quantity
} else if (element.billStatusLabel === '待接单') {
this.tabs.receivedQuantity = element.quantity
} else if (element.billStatusLabel === '运输中') {
this.tabs.GoingQuantity = element.quantity
} else if (element.billStatusLabel === '待签收') {
this.tabs.signQuantity = element.quantity
} else if (element.billStatusLabel === '已完成') {