This commit is contained in:
BianLzhaoMin 2025-08-07 17:08:49 +08:00
parent e0d8cc7f7c
commit 873cbd2870
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@
keyList.push(item[key]) keyList.push(item[key])
} }
} }
const isAllNull = keyList.every(item => item * 1 >= 0) const isAllNull = keyList.every(item => item !== '' && item * 1 >= 0)
tableListNew.push({ tableListNew.push({
...item, ...item,
isAllNull: !isAllNull isAllNull: !isAllNull