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() {
-
+