mirror of
https://github.com/potato47/ccc-devtools.git
synced 2024-12-25 19:29:13 +00:00
修复错误
This commit is contained in:
parent
9f32e46f3f
commit
02c1d4c88c
@ -4,9 +4,6 @@
|
||||
class="modal-drag">
|
||||
节点树
|
||||
</div>
|
||||
<!-- <div style="width: 100%;" :style="{ height: treeViewHeight }">
|
||||
|
||||
</div> -->
|
||||
<el-tree-v2 ref="treeView" :props="defaultProps" empty-text="正在加载场景" :highlight-current="true"
|
||||
:expand-on-click-node="false" :default-expanded-keys="expandedKeys" @current-change="handleCurrentNodeChange"
|
||||
@node-expand="handleNodeExpand" @node-collapse="handleNodeCollapse" :height="treeViewHeight">
|
||||
@ -76,8 +73,7 @@ function getChildByUuidPath(node: any, path: string[], index: number): any {
|
||||
return getChildByUuidPath(node, path, index + 1);
|
||||
}
|
||||
|
||||
function handleCurrentNodeChange(data: TreeNode) {
|
||||
console.log(data);
|
||||
function handleCurrentNodeChange(data: any) {
|
||||
// @ts-ignore
|
||||
const ccNode = getChildByUuidPath(cc.director.getScene(), data.path, 0);
|
||||
if (data) {
|
||||
@ -87,12 +83,12 @@ function handleCurrentNodeChange(data: TreeNode) {
|
||||
}
|
||||
}
|
||||
|
||||
function handleNodeExpand(data: TreeNode) {
|
||||
function handleNodeExpand(data: any) {
|
||||
expandedNodeMap.set(data.uuid, true);
|
||||
expandedKeys = [...expandedNodeMap.keys()];
|
||||
}
|
||||
|
||||
function handleNodeCollapse(data: TreeNode) {
|
||||
function handleNodeCollapse(data: any) {
|
||||
expandedNodeMap.delete(data.uuid);
|
||||
expandedKeys = [...expandedNodeMap.keys()];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user