This commit is contained in:
wangshiming
2022-02-10 16:33:30 +08:00
parent 22228e623a
commit 00872adf10
5 changed files with 750 additions and 70 deletions

View File

@ -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) || [];
}