From cceac6bec252f19dd1441a6b621366685e0246f5 Mon Sep 17 00:00:00 2001 From: ZLY Date: Mon, 25 Aug 2025 16:58:39 +0800 Subject: [PATCH] =?UTF-8?q?feat(routes):=20=E6=B7=BB=E5=8A=A0=E7=BC=96?= =?UTF-8?q?=E6=8E=92=E6=A8=A1=E5=9D=97=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/modules/index.ts | 7 +++++-- src/routes/modules/orchestration.ts | 8 ++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 src/routes/modules/orchestration.ts diff --git a/src/routes/modules/index.ts b/src/routes/modules/index.ts index f35f07f..674205e 100644 --- a/src/routes/modules/index.ts +++ b/src/routes/modules/index.ts @@ -7,6 +7,7 @@ import { componentLibraryModule } from './componentLibrary'; import { compositeCompLibraryModule } from './compositeCompLibrary'; import { componentMarketModule } from './componentMarket'; import { ideContainerMoudle } from './ideContainer'; +import { orchestrationModule } from './orchestration'; export { dashboardModule, @@ -17,7 +18,8 @@ export { componentLibraryModule, compositeCompLibraryModule, componentMarketModule, - ideContainerMoudle + ideContainerMoudle, + orchestrationModule }; export const moduleMap = { @@ -29,5 +31,6 @@ export const moduleMap = { componentLibrary: componentLibraryModule, compositeCompLibrary: compositeCompLibraryModule, componentMarket: componentMarketModule, - ideContainer: ideContainerMoudle + ideContainer: ideContainerMoudle, + orchestrationModule: orchestrationModule }; \ No newline at end of file diff --git a/src/routes/modules/orchestration.ts b/src/routes/modules/orchestration.ts new file mode 100644 index 0000000..0d8674b --- /dev/null +++ b/src/routes/modules/orchestration.ts @@ -0,0 +1,8 @@ +import { IRoute } from '@/routes/types'; + +export const orchestrationModule: IRoute = { + name: 'menu.orchestration.project', + key: '', + breadcrumb: false, + ignore: true +}; \ No newline at end of file