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}] } ], },