diff --git a/src/locales/langs/en-us.ts b/src/locales/langs/en-us.ts
index 3b57704..064acbb 100644
--- a/src/locales/langs/en-us.ts
+++ b/src/locales/langs/en-us.ts
@@ -944,7 +944,8 @@ const local: App.I18n.Schema = {
fixed: '固定时间',
cron: 'CRON表达式',
workflow: '工作流'
- }
+ },
+ detail: 'Job Task Detail'
},
jobBatch: {
title: 'Job Batch List',
diff --git a/src/locales/langs/zh-cn.ts b/src/locales/langs/zh-cn.ts
index 47fadce..8eda425 100644
--- a/src/locales/langs/zh-cn.ts
+++ b/src/locales/langs/zh-cn.ts
@@ -939,7 +939,8 @@ const local: App.I18n.Schema = {
fixed: '固定时间',
cron: 'CRON表达式',
workflow: '工作流'
- }
+ },
+ detail: '定时任务详情'
},
jobBatch: {
title: '任务批次列表',
diff --git a/src/typings/app.d.ts b/src/typings/app.d.ts
index 5f54f19..c8b58f6 100644
--- a/src/typings/app.d.ts
+++ b/src/typings/app.d.ts
@@ -1087,6 +1087,7 @@ declare namespace App {
cron: string;
workflow: string;
};
+ detail: string;
};
jobBatch: {
title: string;
diff --git a/src/views/job/task/index.vue b/src/views/job/task/index.vue
index 865cc3e..aacf79b 100644
--- a/src/views/job/task/index.vue
+++ b/src/views/job/task/index.vue
@@ -1,5 +1,7 @@
+
+
+
+
+ {{ rowData?.groupName }}
+ {{ rowData?.jobName }}
+
+ {{ $t(taskTypeRecord[rowData?.taskType!]) }}
+
+ {{ rowData?.argsStr }}
+
+ {{ rowData?.nextTriggerAt }}
+
+
+ {{ $t(enableStatusNumberRecord[rowData?.jobStatus!]) }}
+
+
+ {{ $t(routeKeyRecord[rowData?.routeKey!]) }}
+
+
+ {{ $t(executorTypeRecord[rowData?.executorType!]) }}
+
+
+ {{ rowData?.executorInfo }}
+
+
+ {{ $t(triggerTypeRecord[rowData?.triggerType!]) }}
+
+
+ {{ rowData?.triggerInterval }}
+
+
+ {{ $t(blockStrategyRecord[rowData?.blockStrategy!]) }}
+
+
+ {{ rowData?.executorTimeout }}
+
+
+ {{ rowData?.maxRetryTimes }}
+
+
+ {{ rowData?.retryInterval }}
+
+
+ {{ rowData?.parallelNum }}
+
+
+ {{ rowData?.description }}
+
+
+
+
+
+