diff --git a/src/views/job/task/index.vue b/src/views/job/task/index.vue index 980e45b..bd374eb 100644 --- a/src/views/job/task/index.vue +++ b/src/views/job/task/index.vue @@ -88,13 +88,13 @@ const { columnChecks, columns, data, getData, loading, mobilePagination, searchP switch (row.executorInfo){ case 'snailJobHttpExecutor': - return '内置HTTP执行器:'+row.executorInfo; + return '内置HTTP执行器'; case 'snailJobCMDExecutor': - return '内置CMD执行器:'+row.executorInfo; + return '内置CMD执行器'; case 'snailJobPowerShellJobExecutor': - return '内置PowerShell执行器:'+row.executorInfo; + return '内置PowerShell执行器'; case 'snailJobShellJobExecutor': - return '内置Shell执行器:'+row.executorInfo; + return '内置Shell执行器'; default: return '自定义执行器:'+row.executorInfo; }