From 84fe68b7db8bf28fc23286b56873b0c0c3c7ac7c Mon Sep 17 00:00:00 2001 From: yaojn Date: Mon, 8 Apr 2024 15:10:00 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E4=BF=AE=E5=A4=8D]=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E7=AE=A1=E7=90=86-=E7=BC=96=E8=BE=91=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E5=8C=96=E8=8A=82=E7=82=B9=EF=BC=8C=E9=80=89=E6=8B=A9=E7=BB=84?= =?UTF-8?q?=E5=90=88=E5=B7=A5=E5=85=B7=E5=90=8E=EF=BC=8C=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E4=B8=BA=E7=A9=BA=20=20=20-=20[=E5=85=B3=E8=81=94]#[1129539709?= =?UTF-8?q?665280]=E6=B5=81=E7=A8=8B=E7=AE=A1=E7=90=86-=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=8C=96=E8=8A=82=E7=82=B9=EF=BC=8C=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E7=BB=84=E5=90=88=E5=B7=A5=E5=85=B7=E5=90=8E=EF=BC=8C?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E4=B8=BA=E7=A9=BA=20http://192.168.0.96:8090?= =?UTF-8?q?/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1129?= =?UTF-8?q?539709665280?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/nodesetting/autoexec/config-list-dialog.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/pages/process/flow/flowedit/components/nodesetting/autoexec/config-list-dialog.vue b/src/views/pages/process/flow/flowedit/components/nodesetting/autoexec/config-list-dialog.vue index 54976a5e..b0bd41ba 100644 --- a/src/views/pages/process/flow/flowedit/components/nodesetting/autoexec/config-list-dialog.vue +++ b/src/views/pages/process/flow/flowedit/components/nodesetting/autoexec/config-list-dialog.vue @@ -20,7 +20,7 @@
- +
@@ -115,8 +115,8 @@ export default { close() { this.$emit('close'); }, - setConfig(config, index) { - this.$set(this.configList, index, config); + setConfig(currentItem, config = {}, index) { + this.$set(this.configList, index, Object.assign(currentItem, config)); // 采用浅拷贝,解决config缺少isShow字段,导致选中组合工具后,组合工具被隐藏的问题 } }, filter: {}, -- Gitee