例子
1:问题原因:我们可能使用
this.$refs.tree.setCheckedKeys(this.defalutArr);
或者使用
:default-expanded-keys=“treeDataSelect” :default-checked-keys=“treeDataSelect”
来进行回显的
获取数据
解决:
if (res.data.code == 200) {
//默认选中的树的数据
let that = this
setTimeout(function() {
res.data.data.forEach(value => {
that.$refs.rootTree.setChecked(value, true, false);
});
}, 500);
}