fix bug
This commit is contained in:
@ -61,6 +61,13 @@ export class SupplyManagementVehicleComponent implements OnInit {
|
||||
...a
|
||||
};
|
||||
}
|
||||
afterRes = (data: any[], rawData?: any) => {
|
||||
console.log(data)
|
||||
return data.map(item => ({
|
||||
...item,
|
||||
disabled: item.auditStatus !== '1'
|
||||
}));
|
||||
};
|
||||
get selectedRows() {
|
||||
return this.st?.list.filter(item => item.checked) || [];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user