Merge remote-tracking branch 'origin/master'

This commit is contained in:
liang.chao 2025-08-07 17:42:16 +08:00
commit dc4f688111
1 changed files with 3 additions and 1 deletions

View File

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