This commit is contained in:
wangshiming
2022-02-22 15:53:27 +08:00
parent b46ad16d1b
commit e599d1404e
7 changed files with 51 additions and 42 deletions

View File

@ -691,9 +691,11 @@ export class OrderManagementBulkComponent implements OnInit {
nzComponentParams: { data: { ...data, billId: item.id } },
nzFooter: null
});
modal.afterClose.subscribe(_ => {
modal.afterClose.subscribe((res: any) => {
if(res) {
this.st.reload(1);
this.getGoodsSourceStatistical();
}
});
}
});
@ -778,13 +780,16 @@ export class OrderManagementBulkComponent implements OnInit {
nzTitle: '申请退款',
nzContent: OneCarOrderCancelConfirmComponent,
nzComponentParams: {
i: item
i: item,
sts: 1
},
nzFooter: null
});
modalRef.afterClose.subscribe(() => {
this.resetSF;
this.st.load();
modalRef.afterClose.subscribe((res: boolean) => {
if(res) {
this.resetSF;
this.st.load();
}
});
}
}