fix bug
This commit is contained in:
@ -117,7 +117,6 @@
|
||||
|
||||
<sv label="备注" col="1" style="margin-top: 16px">
|
||||
<textarea
|
||||
[disabled]="hiden"
|
||||
style="max-width: 400px; min-width: 200px; margin-left: 40px"
|
||||
rows="4"
|
||||
nz-input
|
||||
|
||||
@ -292,9 +292,9 @@ export class TaxManagementOrderReportingComponent extends BasicTableComponent im
|
||||
if (this.selectedRows.length === 0) {
|
||||
params ={}
|
||||
} else{
|
||||
params ={ ids: []}
|
||||
params =[]
|
||||
this.selectedRows.forEach(item => {
|
||||
params.ids.push(item.id);
|
||||
params.push(+item.id);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user