feat(web): 正式提取流程设计能力到AI目录下,做代码拆分

This commit is contained in:
2025-06-23 22:51:40 +08:00
parent 7345774258
commit dc55605c99
9 changed files with 529 additions and 481 deletions

View File

@@ -4,6 +4,7 @@ import {
ClusterOutlined,
CompressOutlined,
DatabaseOutlined,
GatewayOutlined,
InfoCircleOutlined,
OpenAIOutlined,
QuestionOutlined,
@@ -32,6 +33,7 @@ import Yarn from './pages/overview/Yarn.tsx'
import YarnCluster from './pages/overview/YarnCluster.tsx'
import Test from './pages/Test.tsx'
import {commonInfo} from './util/amis.tsx'
import FlowEditor from './pages/ai/flow/FlowEditor.tsx'
export const routes: RouteObject[] = [
{
@@ -109,6 +111,10 @@ export const routes: RouteObject[] = [
path: 'knowledge/detail/:knowledge_id/segment/:group_id',
Component: DataSegment,
},
{
path: 'flowable',
Component: FlowEditor,
},
],
},
{
@@ -211,6 +217,11 @@ export const menus = {
name: '知识库',
icon: <DatabaseOutlined/>,
},
{
path: '/ai/flowable',
name: '流程编排',
icon: <GatewayOutlined/>,
},
],
},
],