From 39125fdcdfdc0c4a5d3af952ee5f5ae24aa32e66 Mon Sep 17 00:00:00 2001 From: hhl123456789 <3118891075@qq.com> Date: Mon, 4 Mar 2024 11:15:08 +0800 Subject: [PATCH] =?UTF-8?q?'=E8=8A=82=E7=82=B9=E5=9B=BE=E6=A0=87=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E5=9B=9E=E6=98=BE=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/addNodeprocess.vue | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/views/caseprocessManagement/components/addNodeprocess.vue b/src/views/caseprocessManagement/components/addNodeprocess.vue index 2ccd787..3262ea1 100644 --- a/src/views/caseprocessManagement/components/addNodeprocess.vue +++ b/src/views/caseprocessManagement/components/addNodeprocess.vue @@ -4,7 +4,7 @@ - + @@ -97,13 +97,14 @@ export default { addvisiable(val) { if (val) { this.ruleForm = this.editData; - console.log(this.ruleForm,'this.ruleForm'); this.getRoles(); this.getbackflowArr(); if (this.ruleForm && this.ruleForm.fileName) { this.imgSvgUrl = process.env.VUE_APP_BASE_API + this.ruleForm.fileName; + this.imageUrl = process.env.VUE_APP_BASE_API + this.ruleForm.fileName } else { this.imgSvgUrl = '' + this.imageUrl = '' } } }, @@ -121,9 +122,6 @@ export default { }, methods: { - changenodeName(val) { - console.log(val, 'changeval'); - }, // 获取驳回节点数据 getbackflowArr() { let queryParams2 = { @@ -161,13 +159,10 @@ export default { // 图标上传 handleAvatarSuccess(res, file) { this.fileName = '' - console.log(file.response.fileName,'上传成功的file'); this.imageUrl = URL.createObjectURL(file.raw); this.fileName = file.response.fileName - console.log(this.imageUrl,'上传成功的this.imageUrl'); }, beforeAvatarUpload(file) { - console.log(file,'file'); const isSvg = file.type === 'image/svg+xml'; if (!isSvg) { this.$message.error('上传图片只能是 SVG 格式!'); -- 2.54.0