车辆对接

This commit is contained in:
wangshiming
2021-12-22 11:28:20 +08:00
parent 3337204d01
commit 1a3091eb1e
3 changed files with 6 additions and 2 deletions

View File

@ -417,7 +417,7 @@ export class OrderManagementRiskComponent implements OnInit {
this.isVisibleRE = false;
this.st.reload()
} else {
// this.service.msgSrv.error(res.msg);
this.service.msgSrv.error(res?.msg);
}
});
}
@ -446,7 +446,7 @@ export class OrderManagementRiskComponent implements OnInit {
this.isVisibleRE = false;
this.st.reload()
} else {
this.service.msgSrv.error(res.msg);
this.service.msgSrv.error(res?.msg);
}
});
}

View File

@ -427,10 +427,12 @@ tabs = {
{
text: '确认发车',
click: (_record) => this.sureDepart(_record),
iif: item => item.wayBillStatus == '2' ,
},
{
text: '确认到车',
click: (_record) => this.sureArrive(_record),
iif: item => item.wayBillStatus == '3' ,
},
],
},

View File

@ -338,10 +338,12 @@ tabs = {
{
text: '确认发车',
click: (_record) => this.sureDepart(_record),
iif: item => item.wayBillStatus == '2' ,
},
{
text: '确认到车',
click: (_record) => this.sureArrive(_record),
iif: item => item.wayBillStatus == '3' ,
},
],
},