From cac00f15b44f24d409e64ae1d1aa2b7021a81acc Mon Sep 17 00:00:00 2001 From: xlsea Date: Mon, 24 Jun 2024 10:45:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(sj=5Fmap=5Freduce):=20=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E9=A1=B9=E5=88=97=E5=88=97=E8=A1=A8=E6=96=B0=E5=A2=9E=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=90=8D=E7=A7=B0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/typings/api.d.ts | 4 ++- .../job/batch/modules/job-task-list-table.vue | 28 +++++++++++++++++-- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/src/typings/api.d.ts b/src/typings/api.d.ts index cc43d74..bab966e 100644 --- a/src/typings/api.d.ts +++ b/src/typings/api.d.ts @@ -1029,6 +1029,8 @@ declare namespace Api { jobId: string; /** 组名称 */ groupName: string; + /** 任务名称 */ + taskName: string; /** 地址 */ clientInfo: string; /** 参数 */ @@ -1065,7 +1067,7 @@ declare namespace Api { /** jobTask list */ type JobTaskList = Common.PaginatingQueryRecord; /** jobTask tree list */ - type JobTaskTreeList = Common.PaginatingQueryRecord; + type JobTaskTreeList = JobTask[]; } /** diff --git a/src/views/job/batch/modules/job-task-list-table.vue b/src/views/job/batch/modules/job-task-list-table.vue index 74d177b..1a0f8f5 100644 --- a/src/views/job/batch/modules/job-task-list-table.vue +++ b/src/views/job/batch/modules/job-task-list-table.vue @@ -1,7 +1,9 @@