From 273935281037c6d1ec0e556a17a40552aab00bce Mon Sep 17 00:00:00 2001
From: zhangxiao <898441624@qq.com>
Date: 星期五, 09 八月 2024 14:26:59 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.5.5:10010/r/web/flow_web
---
src/router/routes/modules/intelligentAgent.ts | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/src/router/routes/modules/intelligentAgent.ts b/src/router/routes/modules/intelligentAgent.ts
new file mode 100644
index 0000000..62be5a4
--- /dev/null
+++ b/src/router/routes/modules/intelligentAgent.ts
@@ -0,0 +1,27 @@
+import { DEFAULT_LAYOUT } from '../base';
+import { AppRouteRecordRaw } from '../types';
+const session: AppRouteRecordRaw = {
+ path: '/intelligentAgent',
+ name: 'intelligentAgent',
+ component: DEFAULT_LAYOUT,
+ meta: {
+ locale: '鏅鸿兘浣撶鐞�',
+ requiresAuth: true,
+ icon: 'icon-robot',
+ order: 4,
+ hideInMenu:false
+ },
+ children:[
+ {
+ path: '/intelligentAgent',
+ name: 'intelligentAgent',
+ component: () => import('@/views/dmx/IntelligentAgent/index.vue'),
+ meta: {
+ requiresAuth: true,
+ hideInMenu:true,
+ roles: ['*'],
+ },
+ },
+ ]
+};
+export default session;
\ No newline at end of file
--
Gitblit v1.8.0