diff --git a/src/views/pages/autoexec/detail/runner-detail.vue b/src/views/pages/autoexec/detail/runner-detail.vue index fef3905129f3f4c277b7c443389bee78d047b2f8..9fb661157418ee19a6cf7a2ec6b4692626cb5d49 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];