//优化之后的代码 不管有几级都可以适用
filterNode(value,data,node) {
if(!value){
return true;
}
let level = node.level;
let _array = [];//这里使用数组存储 只是为了存储值。
this.getReturnNode(node,_array,value);
let result = false;
_array.forEach((item)=>{
result = result || item;
});
return result;
},
getReturnNode(node,_array,value){
let isPass = node.data && node.data.label && node.data.label.indexOf(value) !== -1;
isPass?_array.push(isPass):’’;
this.index++;
console.log(this.index)
if(!isPass && node.level!=1 && node.parent){
this.getReturnNode(node.parent,_array,value);
}
}
树节点 过滤方法
最新推荐文章于 2023-02-20 16:48:17 发布