This commit is contained in:
潘晓云
2022-04-11 15:38:22 +08:00
parent a5165f390d
commit 5f166bd769
2 changed files with 2 additions and 1 deletions

View File

@ -410,6 +410,7 @@ export class DatatableFundReportingComponent implements OnInit {
const ids = this.selectedRows.map(i => i?.id);
this.service.request(this.service.$api_update_fund_data, ids).subscribe(res => {
if (res) {
this.service.msgSrv.success('更新成功');
this.selectedRows = [];
this.st.reload();

View File

@ -559,9 +559,9 @@ export class DatatableOrderReportingComponent implements OnInit {
const ids = this.selectedRows.map(i => i?.id);
this.service.request(this.service.$api_update_order_data, ids).subscribe(res => {
if (res) {
this.service.msgSrv.success('更新成功');
this.selectedRows = [];
this.st.reload();
}
})
}