efbfa62d by lihua

fix: 标准

1 parent df4ba78b
......@@ -302,6 +302,9 @@ watch(
)
function parentGuidCheck (node, {checkedKeys}) {
console.log('node', node)
if (node.disabled) {
return;
}
// fieldsControlDisabled.value = false
treeCurrentNode.value = node
// if (checkedKeys.length === 0) {
......@@ -461,7 +464,10 @@ watch(
return select;
}
if (select?.children?.length) {
return getNode(select.children);
let node = getNode(select.children);
if (node) {
return node;
}
}
}
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!