代码提交

This commit is contained in:
liang.chao 2025-08-08 09:11:58 +08:00
parent dc4f688111
commit 3d57a5c75e
1 changed files with 2 additions and 2 deletions

View File

@ -93,12 +93,12 @@
let keyList = [] let keyList = []
for (let key in item) { for (let key in item) {
if (key.indexOf('-') > 0 && key.split('-').length - 1 >= 2) { if (key.indexOf('-') > 0 && key.split('-').length - 1 >= 2 && !key.includes('file') ) {
keyList.push(item[key]) keyList.push(item[key])
} }
} }
const isAllNull = keyList.every(item => { const isAllNull = keyList.every(item => {
return (item !== '' && item * 1 >= 0) || item.indexOf('file') > 0 return (item !== '' && item * 1 >= 0)
}) })
tableListNew.push({ tableListNew.push({
...item, ...item,