fix bug
This commit is contained in:
@ -330,9 +330,9 @@ export class TaxManagementIndividualIncomeComponent extends BasicTableComponent
|
||||
if (this.selectedRows.length === 0) {
|
||||
params ={}
|
||||
} else{
|
||||
params = [];
|
||||
params ={ ids: []}
|
||||
this.selectedRows.forEach(item => {
|
||||
params.push(item.billId);
|
||||
params.ids.push(item.id);
|
||||
});
|
||||
}
|
||||
this.service.request(this.service.$api_update_individual_income_page, params).subscribe((res: any) => {
|
||||
|
||||
Reference in New Issue
Block a user