quyx@nextosd.com 4 months ago
parent
commit
9ba320507b
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/views/fcbi/survey/detail.vue

+ 0 - 2
src/views/fcbi/survey/detail.vue

@@ -634,12 +634,10 @@ const checkRegionNode = (nodes, regionCode, parentNode = null) => {
   for (const node of nodes) {
     if (node.regionCode === regionCode) {
       node.checked = true;
-      // 子节点选中后,更新其父节点状态
       updateParentNodeStatus(parentNode);
       return true;
     }
     if (node.children && node.children.length > 0) {
-      // 递归查找子节点时,将当前节点作为父节点传入
       const found = checkRegionNode(node.children, regionCode, node);
       if (found) return true;
     }