Element-ui el-tree获取父级节点的id返选问题

Element-ui树形控件el-tree获取父级节点的id

使用饿了么ui开发中遇到问题是后端需要传值勾选的父级id于子id,getCheckedKeys()方法使用只有全选子id才返回父级id,所以使用

this.$refs.tree.getCheckedKeys().concat(this.$refs.tree.getHalfCheckedKeys())传值给后端

反选时需设置

response.data.menuList // 返回数组

response.data.menuList.forEach((element) => 

{ var node = that.$refs.tree.getNode(element);

 if (node.isLeaf) { that.$refs.tree.setChecked(node, true);

 }

你可能感兴趣的:(Element-ui el-tree获取父级节点的id返选问题)