车辆对接

This commit is contained in:
wangshiming
2021-12-22 20:14:59 +08:00
parent 2a91d9fd80
commit c914ee023e
5 changed files with 51 additions and 12 deletions

View File

@ -585,7 +585,16 @@ resourceStatus: any;
nzWidth: 580,
nzContent: VehicleUpdateFreightComponent,
nzComponentParams: { data: { ...data, id: item.id } },
nzFooter: null
nzOnOk: sin => {
this.service.request(this.service.$api_change_bulk, { billId: item.id, ...sin.sf.value }).subscribe(res => {
if (res) {
this.service.msgSrv.success('变更运费成功');
modal.destroy();
this.st.reload();
}
});
return false;
}
});
modal.afterClose.subscribe(_ => this.st.reload());
}