车辆对接

This commit is contained in:
wangshiming
2022-01-12 13:35:52 +08:00
parent eaef5be8ff
commit 4c544cbcd0
6 changed files with 55 additions and 24 deletions

View File

@ -658,6 +658,9 @@ tabs = {
},
nzFooter: null
});
modalRef.afterClose.subscribe((result: any) => {
this.st.load(1);
});
}
userAction() {
let params: any[] = [];
@ -668,6 +671,7 @@ tabs = {
console.log(params)
this.service.request(this.service.$api_get_batchSignBulkOrder, params).subscribe(res => {
if (res) {
this.st.load(1);
console.log(res);
} else {
this.service.msgSrv.error(res.msg);
@ -684,7 +688,7 @@ tabs = {
this.service.request(this.service.$api_get_cancelAnOrder, {id: item.id}).subscribe((res) => {
if (res === true) {
this.service.msgSrv.success('操作成功!');
this.st?.reload();
this.st?.reload(1);
this.initST();
}
}),
@ -699,6 +703,7 @@ tabs = {
if(res) {
this.service.msgSrv.success('撤销成功!')
this.stFloat.reload()
this.st?.reload(1);
} else {
this.service.msgSrv.error(res.msg)
}