From 40568d5c989eeba3580c6819bcb68332d5be7f22 Mon Sep 17 00:00:00 2001 From: opensnail <598092184@qq.com> Date: Sat, 28 Dec 2024 20:05:33 +0800 Subject: [PATCH] =?UTF-8?q?feat(1.3.0-beta1):=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E4=BC=A0=E9=80=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/job/task/index.vue | 3 ++- src/views/job/task/modules/job-task-trigger-modal.vue | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/job/task/index.vue b/src/views/job/task/index.vue index ff9d515..1875de1 100644 --- a/src/views/job/task/index.vue +++ b/src/views/job/task/index.vue @@ -36,7 +36,8 @@ const { columnChecks, columns, data, getData, loading, mobilePagination, searchP groupName: null, jobName: null, jobStatus: null, - ownerId: null + ownerId: null, + executorInfo: null }, columns: () => [ { diff --git a/src/views/job/task/modules/job-task-trigger-modal.vue b/src/views/job/task/modules/job-task-trigger-modal.vue index f3ec20a..5c507c9 100644 --- a/src/views/job/task/modules/job-task-trigger-modal.vue +++ b/src/views/job/task/modules/job-task-trigger-modal.vue @@ -111,6 +111,7 @@ function createDefaultScriptParams() { function handleUpdateModelWhenEdit() { if (props.rowData) { Object.assign(model, props.rowData); + // 任务类型 1:集群 2:广播 3:切片 4:Map 5:MapReduce if (props.rowData.taskType === 3 && props.rowData.argsStr) { Object.assign(dynamicForm, { args: JSON.parse(props.rowData.argsStr).map((item: string) => { @@ -302,7 +303,7 @@ async function handleSubmit() { - +