fix: 修改链路部分字段名

This commit is contained in:
chenjinsong
2023-08-29 15:35:22 +08:00
parent c53cecad93
commit db13ef65e8
6 changed files with 2004 additions and 2004 deletions

View File

@@ -756,9 +756,9 @@ export default {
}
const rootNode = new Node(nodeType.rootNode, this.entity.entityName, {
entityType: this.entity.entityType,
entityName: this.entity.entityName,
/*x: coordinate.rootNode.fx,
y: coordinate.rootNode.fy*/
entityName: this.entity.entityName
/* x: coordinate.rootNode.fx,
y: coordinate.rootNode.fy */
})
await rootNode.queryDetailData()
nodes.push(rootNode)
@@ -774,9 +774,9 @@ export default {
nodeType.listNode,
`${rootNode.id}__${k}-list`,
{
entityType: k,
/*x: coordinate[`${k}ListNode`].fx,
y: coordinate[`${k}ListNode`].fy*/
entityType: k
/* x: coordinate[`${k}ListNode`].fx,
y: coordinate[`${k}ListNode`].fy */
},
rootNode
)