|  |  |  | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | <config-node v-show="type === 'node'" :id="id" :diagramId="diagramId" :globalGridAttr="globalGridAttr" | 
|---|
|  |  |  | :graph="graph" | 
|---|
|  |  |  | :nodeType="nodeType" | 
|---|
|  |  |  | :projectId="projectId" | 
|---|
|  |  |  | :shape="shape"/> | 
|---|
|  |  |  | <config-edge v-show="type === 'edge'" :id="id" :globalGridAttr="globalGridAttr" :graph="graph"/> | 
|---|
|  |  |  | 
|---|
|  |  |  | imgsList2:[ | 
|---|
|  |  |  | {imgPath:'logo',imgName:'logo',nodeType:'node',imgWidth:60,imgHeight:60,imgId:'100',data:{dataId:'123456',nodeTypeExt:'aaa'}}, | 
|---|
|  |  |  | ], | 
|---|
|  |  |  | nodeType:'', | 
|---|
|  |  |  | first: true, | 
|---|
|  |  |  | shape: '', | 
|---|
|  |  |  | projectList: [], | 
|---|
|  |  |  | 
|---|
|  |  |  | this.type = cell.isNode() ? 'node' : 'edge' | 
|---|
|  |  |  | this.shape = cell.shape | 
|---|
|  |  |  | this.id = cell.id | 
|---|
|  |  |  | this.nodeType = cell.getData().nodeType | 
|---|
|  |  |  | console.log(this.nodeType, 'this.nodeType') | 
|---|
|  |  |  | console.log(this.shape, 'this.shape') | 
|---|
|  |  |  | // this.nodeOpt(this.id, this.globalGridAttr) | 
|---|
|  |  |  | }) | 
|---|