duy hace 1 año
padre
commit
68a34c841b
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      src/views/transfer/components/table-collect.vue

+ 5 - 1
src/views/transfer/components/table-collect.vue

@@ -138,9 +138,13 @@ const getTotalTabledata = (data)=>{
     totalTabledata.value = []
     data.forEach((ele)=>{
        ele.nodeLists.forEach((ele1)=>{
-            ele1.list.forEach((ele2)=>{
+        console.log(ele1, 'ele1')
+        if (ele1.list !== null) {
+            ele1?.list.forEach((ele2)=>{
                 totalTabledata.value.push(ele2)
             })
+        }
+            
        })
     })
 }