From 76cdda8f731c4aa7d8ae0216d29f1c362dc53125 Mon Sep 17 00:00:00 2001 From: wente <329538422@qq.com> Date: 星期五, 22 三月 2024 14:12:03 +0800 Subject: [PATCH] 表决判定 --- web/src/views/modules/taskReliability/RBD-edit-img.vue | 39 +++++++++++++++++++++++++++++---------- 1 files changed, 29 insertions(+), 10 deletions(-) diff --git a/web/src/views/modules/taskReliability/RBD-edit-img.vue b/web/src/views/modules/taskReliability/RBD-edit-img.vue index d31fb73..3d2640f 100644 --- a/web/src/views/modules/taskReliability/RBD-edit-img.vue +++ b/web/src/views/modules/taskReliability/RBD-edit-img.vue @@ -3,7 +3,7 @@ <el-row :gutter="[8,8]"> <el-col :span="4"> <div :style="'height:' +left_p+'px'"> - <div class="fa-card-a" style="height: 100%"> + <div style="height: 100%"> <div id="stencilImg"></div> </div> </div> @@ -184,7 +184,8 @@ id: '', graph: null, globalGridAttr: { - voteNum: '', + productType:'', + voteNum: null, repairMttcr: '', repairMttcrOther: '', repairDistribType: '', @@ -493,6 +494,7 @@ }) this.graph.centerContent() const stencil = new Addon.Stencil({ + getDragNode: (node) => node.clone({ keepId: true }), getDropNode(node) { let {width, height} = node.size() if (node.getData().imgWidth) { @@ -501,9 +503,11 @@ if (node.getData().imgHeight) { height = node.getData().imgHeight } - console.log(node.getData().imgWidth, node.getData().imgHeight, 'node.size()') - return node.clone().size(width, height) + return node.clone({ keepId: true }).size(width, height) }, + validateNode(node){ + console.log(node.id) + }, title: '', target: this.graph, stencilGraphWidth: 200, @@ -541,7 +545,7 @@ dataId: '', nodeType: item.nodeType, nodeTypeExt: '', - voteNum:'' + voteNum:null }, attrs: { text: { @@ -572,6 +576,7 @@ imageUrl: `${window.SITE_CONFIG['apiURL']}/sysPictureBase/getProductImg?token=${Cookies.get('token')}&id=${item.imgPath}`, width: 60, height: 60, + id: item.dataId, // 鎵嬪姩璁剧疆鑺傜偣鐨� ID data: { isRepair: item.isRepair, dataId: item.dataId, @@ -587,7 +592,7 @@ taskMtbcfOther: item.taskMtbcfOther, imgHeight: item.imgHeight, imgWidth: item.imgWidth, - voteNum:'', + voteNum:null, }, attrs: { text: { @@ -727,7 +732,7 @@ this.id = cell.id if (this.type === 'node') { this.nodeType = cell.getData().nodeType - console.log(this.nodeType, 'this.nodeType') + console.log(this.nodeType,cell.id,'this.nodeType') } console.log(this.shape, 'this.shape') // this.nodeOpt(this.id, this.globalGridAttr) @@ -810,9 +815,23 @@ this.graph.on('edge:mouseenter', ({cell}) => { // alert(123) - cell.addTools( - ['segments'] - ) + cell.addTools([ + { + name: 'source-arrowhead', + }, + { + name: 'target-arrowhead', + args: { + attrs: { + fill: 'red', + }, + }, + }, + { + name: 'segments', + args: {snapRadius: 20, attrs: {fill: '#444'}} + }, + ]) }) this.graph.on('edge:mouseleave', ({cell}) => { -- Gitblit v1.9.1