From 04c3c3926a1911dd69cdb4157585af65d01e772f Mon Sep 17 00:00:00 2001 From: xlsea Date: Thu, 24 Oct 2024 14:32:48 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=84=9A=E6=9C=AC=E6=89=A7=E8=A1=8C?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BC=96=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/job/task/modules/job-task-operate-drawer.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/job/task/modules/job-task-operate-drawer.vue b/src/views/job/task/modules/job-task-operate-drawer.vue index 4072162..684b692 100644 --- a/src/views/job/task/modules/job-task-operate-drawer.vue +++ b/src/views/job/task/modules/job-task-operate-drawer.vue @@ -188,6 +188,7 @@ const executorCustomOptions = [ type ScriptParams = { method: string; scriptParams: string; + charset: string; }; const scriptParams = reactive(createDefaultScriptParams()); @@ -195,7 +196,8 @@ const scriptParams = reactive(createDefaultScriptParams()); function createDefaultScriptParams() { return { method: 'LOCAL_SCRIPT', - scriptParams: '' + scriptParams: '', + charset: '' }; } @@ -589,6 +591,9 @@ const scriptMethodOptions = [ + + +