From e6f94207f6960921b333c1b78c2cc4a2f5c93084 Mon Sep 17 00:00:00 2001 From: dhb52 Date: Sun, 5 May 2024 10:54:12 +0800 Subject: [PATCH] =?UTF-8?q?wip:=20=E5=AE=9A=E6=97=B6=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/langs/en-us.ts | 3 +- src/locales/langs/zh-cn.ts | 3 +- src/typings/app.d.ts | 1 + src/views/job/task/index.vue | 23 +++++- .../task/modules/job-task-detail-drawer.vue | 80 +++++++++++++++++++ 5 files changed, 107 insertions(+), 3 deletions(-) create mode 100644 src/views/job/task/modules/job-task-detail-drawer.vue 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 @@ + + + +