From 09e513df72e71ed8e960132be4175b69ee6fce25 Mon Sep 17 00:00:00 2001
From: wente <329538422@qq.com>
Date: 星期一, 04 三月 2024 15:32:52 +0800
Subject: [PATCH] 新增nodeTypeExt

---
 web/src/views/modules/taskReliability/RBD-edit-img.vue |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/web/src/views/modules/taskReliability/RBD-edit-img.vue b/web/src/views/modules/taskReliability/RBD-edit-img.vue
index cd32c6f..1b11702 100644
--- a/web/src/views/modules/taskReliability/RBD-edit-img.vue
+++ b/web/src/views/modules/taskReliability/RBD-edit-img.vue
@@ -65,6 +65,7 @@
           </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"/>
@@ -119,6 +120,7 @@
         imgsList2:[
           {imgPath:'logo',imgName:'logo',nodeType:'node',imgWidth:60,imgHeight:60,imgId:'100',data:{dataId:'123456',nodeTypeExt:'aaa'}},
         ],
+        nodeType:'',
         first: true,
         shape: '',
         projectList: [],
@@ -990,6 +992,8 @@
           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)
         })

--
Gitblit v1.9.1