用vue解决element-ui级联选择器最后暂无数据的问题
程序员文章站
2022-06-07 18:07:40
...
//获取系统分类管理列表
getSystemTypeApi(){
getSystemTypeApi({}).then((res)=>{
if(res.data.code == 200){
this.systemTypeList = this.getTreeData(res.data);
// this.systemTypeList = res.data;
}
});
},
// 递归判断列表,把最后的children设为undefined
getTreeData(data){
for(var i=0;i<data.length>0;i++){
if(data[i].children == null||data[i].children.length<=0){
// children若为空数组,则将children设为undefined
data[i].children = undefined;
}else {
// children若不为空数组,则继续 递归调用 本方法
this.getTreeData(data[i].children);
}
}
return data;
},