车辆对接

This commit is contained in:
wangshiming
2022-01-04 09:38:03 +08:00
parent 3168fd2dca
commit 4f51c487cc
5 changed files with 19 additions and 10 deletions

View File

@ -647,6 +647,10 @@ resourceStatus: any;
this.selectedRows.forEach(item => {
params.push(item.id);
});
let params2: any[] = [];
this.selectedRows.forEach(item => {
params2.push(item.enterpriseInfoId);
});
if(params.length === 0) {
this.service.msgSrv.error('请先选择订单!')
return
@ -655,7 +659,7 @@ resourceStatus: any;
nzTitle: '修改网络货运人',
nzWidth: 600,
nzContent: VehicleFreightPeopleComponent,
nzComponentParams: { data: { ids: params, } },
nzComponentParams: { data: { ids: params, enterpriseInfoIds: params2, } },
nzFooter: null,
// nzOnOk: sin => {
// this.service.request(this.service.$api_change_bulk, { billId: item.id, ...sin.sf.value }).subscribe(res => {