diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/start.vue b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/start.vue
index b42473bf7d..740bbcde18 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/start.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/start.vue
@@ -183,6 +183,12 @@
+
+ {{$t('Whether dry-run')}}
+
+
+
+
{{$t('Cancel')}}
{{spinnerLoading ? $t('Loading...') : $t('Start')}}
@@ -226,7 +232,8 @@
environmentCode: '',
// Global custom parameters
definitionGlobalParams: [],
- udpList: []
+ udpList: [],
+ dryRun: 0
}
},
mixins: [disabledState],
@@ -291,7 +298,8 @@
workerGroup: this.workerGroup,
environmentCode: this.environmentCode,
startParams: !_.isEmpty(startParams) ? JSON.stringify(startParams) : '',
- expectedParallelismNumber: this.parallismNumber
+ expectedParallelismNumber: this.parallismNumber,
+ dryRun: this.dryRun
}
// Executed from the specified node
if (this.sourceType === 'contextmenu') {
@@ -395,14 +403,12 @@
display: block;
}
}
-
.ans {
color: #0097e0;
font-size: 14px;
vertical-align: middle;
cursor: pointer;
}
-
.list {
margin-bottom: 14px;
.text {
diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue
index 327f3999b0..1112e91af7 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue
@@ -63,6 +63,12 @@
+
+
+ YES
+ NO
+
+
diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue
index 2cbb963d9c..f5c28b150a 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue
@@ -59,6 +59,12 @@
+
+
+ YES
+ NO
+
+
{{scope.row.host | filterNull}}
diff --git a/dolphinscheduler-ui/src/js/module/i18n/locale/en_US.js b/dolphinscheduler-ui/src/js/module/i18n/locale/en_US.js
index f450cede83..ac2dd887db 100755
--- a/dolphinscheduler-ui/src/js/module/i18n/locale/en_US.js
+++ b/dolphinscheduler-ui/src/js/module/i18n/locale/en_US.js
@@ -187,6 +187,7 @@ export default {
'Task status statistics': 'Task Status Statistics',
Number: 'Number',
State: 'State',
+ 'Dry-run flag': 'Dry-run flag',
'Process Status Statistics': 'Process Status Statistics',
'Process Definition Statistics': 'Process Definition Statistics',
'Project Name': 'Project Name',
@@ -464,6 +465,7 @@ export default {
'Timeout strategy must be selected': 'Timeout strategy must be selected',
'Timeout must be a positive integer': 'Timeout must be a positive integer',
'Add dependency': 'Add dependency',
+ 'Whether dry-run': 'Whether dry-run',
and: 'and',
or: 'or',
month: 'month',
diff --git a/dolphinscheduler-ui/src/js/module/i18n/locale/zh_CN.js b/dolphinscheduler-ui/src/js/module/i18n/locale/zh_CN.js
index 104fd7c105..e3b55425eb 100644
--- a/dolphinscheduler-ui/src/js/module/i18n/locale/zh_CN.js
+++ b/dolphinscheduler-ui/src/js/module/i18n/locale/zh_CN.js
@@ -186,6 +186,7 @@ export default {
'Task status statistics': '任务状态统计',
Number: '数量',
State: '状态',
+ 'Dry-run flag': '空跑标识',
'Process Status Statistics': '流程状态统计',
'Process Definition Statistics': '流程定义统计',
'Project Name': '项目名称',
@@ -463,6 +464,7 @@ export default {
'Timeout strategy must be selected': '超时策略必须选一个',
'Timeout must be a positive integer': '超时时长必须为正整数',
'Add dependency': '添加依赖',
+ 'Whether dry-run': '是否空跑',
and: '且',
or: '或',
month: '月',