diff --git a/src/views/pages/autoexec/detail/jobDetail/phase/node-list.vue b/src/views/pages/autoexec/detail/jobDetail/phase/node-list.vue index 55be78edec3685f0cb992b3b799275288fdf68eb..df7ff47f0e2baabffba954185887fed26a9d3279 100644 --- a/src/views/pages/autoexec/detail/jobDetail/phase/node-list.vue +++ b/src/views/pages/autoexec/detail/jobDetail/phase/node-list.vue @@ -60,6 +60,10 @@ {{ row.host }}{{ row.port ? ':' + row.port : '' }} {{ row.warnCount }} + @@ -282,6 +286,13 @@ export default { }, beforeCreate() {}, created() { + if (this.jobData.source == 'deploy' || this.jobData.source == 'deployschedulegeneral') { + // 添加发布版本字段 + this.theadList.splice(1, 0, { + title: this.$t('page.versions'), + key: 'version' + }); + } if (this.jobData.isCanExecute) { this.theadList.unshift({ key: 'selection' }); this.theadList.push({ key: 'action' }); diff --git a/src/views/pages/deploy/application-config/config/env/env-instance-list.vue b/src/views/pages/deploy/application-config/config/env/env-instance-list.vue index f2a8c4bd284d2f0bd562acb7cda03ab139289791..ac28c9b18de858a9e7ee04264e97081e21919c74 100644 --- a/src/views/pages/deploy/application-config/config/env/env-instance-list.vue +++ b/src/views/pages/deploy/application-config/config/env/env-instance-list.vue @@ -41,12 +41,15 @@ :tbodyList="tbodyList" :theadList="theadList" > + - @@ -85,6 +88,10 @@ export default { title: this.$t('page.name'), key: 'name' }, + { + title: this.$t('page.versions'), + key: 'version' + }, { title: this.$t('page.ip'), key: 'ip'