diff --git a/src/i18n/langs/zh.json b/src/i18n/langs/zh.json index 8cc4a0853..227196cf1 100644 --- a/src/i18n/langs/zh.json +++ b/src/i18n/langs/zh.json @@ -713,7 +713,8 @@ "JobType": "作业类型", "Comment": "备注", "History": "执行历史", - "UseParameterDefine": "定义参数" + "UseParameterDefine": "定义参数", + "TaskDispatch": "任务下发成功" }, "perms": { "": "", diff --git a/src/views/ops/Job/JobDetail/JobHistory.vue b/src/views/ops/Job/JobDetail/JobHistory.vue index db9079a93..b58d68dba 100644 --- a/src/views/ops/Job/JobDetail/JobHistory.vue +++ b/src/views/ops/Job/JobDetail/JobHistory.vue @@ -38,9 +38,9 @@ export default { width: '96px', formatter: (row) => { if (row.is_finished) { - return + return } - return + return }, formatterArgs: { width: '14px' @@ -51,12 +51,12 @@ export default { width: '96px', formatter: (row) => { if (!row.is_finished) { - return + return } if (row.is_success) { - return + return } - return + return }, formatterArgs: { width: '14px' diff --git a/src/views/ops/Job/index.vue b/src/views/ops/Job/index.vue index 27a21a8d9..6d7a56d74 100644 --- a/src/views/ops/Job/index.vue +++ b/src/views/ops/Job/index.vue @@ -8,7 +8,6 @@