From adbdee1454825d3eec9e448fad42b47409fffa07 Mon Sep 17 00:00:00 2001 From: dengbf Date: Fri, 1 Aug 2025 12:12:19 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E4=BF=AE=E5=A4=8D]=20#[1477548049924096]?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=8C=96=E4=BD=9C=E4=B8=9A-=E5=A4=8D?= =?UTF-8?q?=E5=88=B6=E4=BD=9C=E4=B8=9A=E6=97=B6=EF=BC=8C=E6=89=A7=E8=A1=8C?= =?UTF-8?q?=E5=99=A8=E7=BB=84=E6=A0=87=E7=AD=BE=E6=98=A0=E5=B0=84=E5=BC=82?= =?UTF-8?q?=E5=B8=B8=20http://192.168.0.96:8090/demo/rdm.html#/bug-detail/?= =?UTF-8?q?939050947543040/939050947543057/1477548049924096?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/pages/autoexec/detail/runner-detail.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/pages/autoexec/detail/runner-detail.vue b/src/views/pages/autoexec/detail/runner-detail.vue index fef39051..9fb66115 100644 --- a/src/views/pages/autoexec/detail/runner-detail.vue +++ b/src/views/pages/autoexec/detail/runner-detail.vue @@ -748,6 +748,12 @@ export default { }; this.runnerGroup = runnerGroup || { mappingMode: 'constant', value: '-1'}; + if (this.$utils.isEmpty(runnerGroupTag) && !this.$utils.isEmpty(executeConfig.runnerGroupTag)) { + this.runnerGroupTag = executeConfig.runnerGroupTag; + } + if (this.$utils.isEmpty(runnerGroup) && !this.$utils.isEmpty(executeConfig.runnerGroup)) { + this.runnerGroup = executeConfig.runnerGroup; + } for (let key in this.executeForm.itemList) { // 链接协议和执行用户 let item = this.executeForm.itemList[key]; -- Gitee