Feat:全选操作支持选中概要节点
This commit is contained in:
parent
ccb2a260b6
commit
0d1b9dfff4
@ -629,6 +629,15 @@ class Render {
|
|||||||
if (!node.getData('isActive')) {
|
if (!node.getData('isActive')) {
|
||||||
this.addNodeToActiveList(node)
|
this.addNodeToActiveList(node)
|
||||||
}
|
}
|
||||||
|
// 概要节点
|
||||||
|
if (node._generalizationList && node._generalizationList.length > 0) {
|
||||||
|
node._generalizationList.forEach(item => {
|
||||||
|
const gNode = item.generalizationNode
|
||||||
|
if (!gNode.getData('isActive')) {
|
||||||
|
this.addNodeToActiveList(gNode)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
null,
|
null,
|
||||||
true,
|
true,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user