From a8a52eb83a3debf6d9b4bfdaeafc2e35444032b1 Mon Sep 17 00:00:00 2001 From: zhaowei Date: Thu, 4 Sep 2025 17:00:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=9B=86=E6=88=90coze?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- react-ui/config/routes.ts | 12 ++++++++++++ react-ui/src/pages/Coze/index.tsx | 9 +++++++++ 2 files changed, 21 insertions(+) create mode 100644 react-ui/src/pages/Coze/index.tsx diff --git a/react-ui/config/routes.ts b/react-ui/config/routes.ts index 133cbbc1..3c01a97c 100644 --- a/react-ui/config/routes.ts +++ b/react-ui/config/routes.ts @@ -607,6 +607,18 @@ export default [ }, ], }, + { + name: 'coze', + path: '/coze', + routes: [ + { + name: '智能体编排', + path: '', + key: 'coze', + component: './Coze/index', + }, + ], + }, { name: 'mixed', path: '/mixed', diff --git a/react-ui/src/pages/Coze/index.tsx b/react-ui/src/pages/Coze/index.tsx new file mode 100644 index 00000000..ecdf9051 --- /dev/null +++ b/react-ui/src/pages/Coze/index.tsx @@ -0,0 +1,9 @@ +import IframePage from '@/components/IFramePage'; + +function Coze() { + return ( + + ); +} + +export default Coze;