This commit is contained in:
Teo
2025-08-30 01:16:18 +08:00
parent 76488de0cd
commit 873aecf815
6 changed files with 66 additions and 43 deletions

View File

@ -345,7 +345,6 @@ const getWorkList = (bool = false) => {
if (res.code === 200) {
state.tableData = res.rows.map((item: any, i: number) => {
item.index = i + 1;
item.aiFill = item.detailList?.reduce((sum: number, child: any) => sum + child.aiFill, 0) || 0;
return item;
});
state.total = res.total;