浏览代码

修改树方法

zhaoke 2 年之前
父节点
当前提交
04ae07ca88
共有 1 个文件被更改,包括 20 次插入20 次删除
  1. 20 20
      src/utils/validate.js

+ 20 - 20
src/utils/validate.js

@@ -44,27 +44,27 @@ export function translateDataToTreeAll (data, parentKey, parentIDKey) {
   let translator = (parent, children) => {
     parent.forEach((parent) => {
       parent.children = [];
-      // children.forEach((current, index) => {
-      //   if (current[parentKey] === parent[parentIDKey]) {
-      //     const temp = JSON.parse(JSON.stringify(children));
-      //     temp.splice(index, 1);
-      //     translator([current], temp);
-      //     typeof parent.children !== "undefined"
-      //       ? parent.children.push(current)
-      //       : (parent.children = [current]);
-      //   }
-      // });
-      for (let i = 0; i < children.length;) {
-        if (children[i][parentKey] === parent[parentIDKey]) {
-          const temp = children.splice(i, 1)
-          typeof parent.children !== 'undefined'
-            ? parent.children.push(...temp)
-            : (parent.children = temp)
-          translator(temp, children)
-        } else {
-          i++
+      children.forEach((current, index) => {
+        if (current[parentKey] === parent[parentIDKey]) {
+          const temp = JSON.parse(JSON.stringify(children));
+          temp.splice(index, 1);
+          translator([current], temp);
+          typeof parent.children !== "undefined"
+            ? parent.children.push(current)
+            : (parent.children = [current]);
         }
-      }
+      });
+      // for (let i = 0; i < children.length;) {
+      //   if (children[i][parentKey] === parent[parentIDKey]) {
+      //     const temp = children.splice(i, 1)
+      //     typeof parent.children !== 'undefined'
+      //       ? parent.children.push(...temp)
+      //       : (parent.children = temp)
+      //     translator(temp, children)
+      //   } else {
+      //     i++
+      //   }
+      // }
     });
   };
   translator(parent, children);