From 3227aef1af6d5546e44810e8b0f2ea56429225d1 Mon Sep 17 00:00:00 2001 From: zhanghao <774378400@qq.com> Date: Wed, 18 Mar 2026 17:18:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0get=5Fcurrent=5Fpage?= =?UTF-8?q?=E8=8A=82=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/flow/config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/views/flow/config.js b/src/views/flow/config.js index b908356..505faa9 100644 --- a/src/views/flow/config.js +++ b/src/views/flow/config.js @@ -447,6 +447,18 @@ export const collapseList = [ { name: 'voice', type: "input", input: "", componentType: 'select', selectOptions: voiceOptions(), disabled: true }, { name: 'volume', type: "input", input: "", componentType: 'number', max: 100, disabled: true } ] + }, { + icon: dialogueSvg, + name: "获取当前页面名称", + type: "serviceNode", + desc: "获取当前页面名称", + action: 'GET_CURRENT_PAGE', + nodeType: "LLM", + outputType: 'json', + nodeParams: [ + { name: 'url', type: "input", input: "", disabled: true }, + ], + outputParams: [{ name: 'pageName', type: 'string', desc: '当前页面名称', disabled: true}] } ], },