From e737dd93559e6de3933e83a3f70e3ef998df9fd0 Mon Sep 17 00:00:00 2001 From: v_xugzhou <941071842@qq.com> Date: Wed, 27 Nov 2024 15:31:40 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=E7=AC=AC=E4=B8=89=E6=96=B9=E6=8F=92?= =?UTF-8?q?=E4=BB=B6=E6=89=A7=E8=A1=8C=E4=B8=AD=E8=B0=83=E7=94=A8=20detail?= =?UTF-8?q?=20=E6=8E=A5=E5=8F=A3=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20--story=3D120926155?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/task/TaskExecute/ExecuteInfo.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/task/TaskExecute/ExecuteInfo.vue b/frontend/src/views/task/TaskExecute/ExecuteInfo.vue index cce84ed..9e4ae6c 100644 --- a/frontend/src/views/task/TaskExecute/ExecuteInfo.vue +++ b/frontend/src/views/task/TaskExecute/ExecuteInfo.vue @@ -526,7 +526,7 @@ }, // 补充记录缺少的字段 async setFillRecordField(record) { - const { version, component_code: componentCode } = this.nodeDetailConfig; + const { version, component_code: componentCode, componentData } = this.nodeDetailConfig; const { inputs, state } = record; let { outputs } = record; // 执行记录的outputs可能为Object格式,需要转为Array格式 @@ -563,7 +563,8 @@ const { constants } = islegacySubProcess ? this.pipelineData : this.componentValue.pipeline; this.renderConfig = await this.getSubflowInputsConfig(constants); } else if (componentCode) { // 任务节点需要加载标准插件 - await this.getNodeConfig(componentCode, version, inputs.plugin_version); + const pluginVersion = componentData.plugin_version.value; + await this.getNodeConfig(componentCode, version, pluginVersion); } inputsInfo = Object.keys(inputs).reduce((acc, cur) => { const scheme = Array.isArray(this.renderConfig) From ffe64ee8976e2d03999b076342ac0117ffc95beb Mon Sep 17 00:00:00 2001 From: v_xugzhou <941071842@qq.com> Date: Wed, 27 Nov 2024 15:40:57 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E8=B0=83=E8=AF=95=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E8=80=85=E4=B8=8D=E6=98=AF=E8=87=AA=E5=B7=B1?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D=20--ignore=20#=20Reviewed,?= =?UTF-8?q?=20transaction=20id:=2025007?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/template/TemplateMock/MockExecute/index.vue | 11 ++++++----- frontend/src/views/template/TemplateMock/index.vue | 3 --- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/frontend/src/views/template/TemplateMock/MockExecute/index.vue b/frontend/src/views/template/TemplateMock/MockExecute/index.vue index 7507862..4bfc648 100644 --- a/frontend/src/views/template/TemplateMock/MockExecute/index.vue +++ b/frontend/src/views/template/TemplateMock/MockExecute/index.vue @@ -93,7 +93,7 @@