mirror of
http://112.124.100.131/ebiz-ai/ebiz-ai-knowledge-manage.git
synced 2025-12-15 13:56:51 +08:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
@@ -1,7 +1,30 @@
|
||||
import layout from '@/views/app/layout/index.vue'
|
||||
import layout from '@/views/app/layout/layout.vue'
|
||||
import redirect from '@/views/app/redirect/index.vue'
|
||||
const home = () => import('@/views/app/Home')
|
||||
|
||||
export default [
|
||||
{
|
||||
path: '/',
|
||||
component: layout,
|
||||
redirect: '/home',
|
||||
name: 'home',
|
||||
meta: {
|
||||
title: '主页',
|
||||
icon: 'icon-zhuye',
|
||||
affix: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: '/home',
|
||||
name: 'home-page',
|
||||
component: home,
|
||||
meta: {
|
||||
title: '主页',
|
||||
icon: 'icon-zhuye'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/knowledge',
|
||||
name: 'knowledge',
|
||||
@@ -20,7 +43,7 @@ export default [
|
||||
// redirect: '/knowledge/list',
|
||||
meta: {
|
||||
title: '知识库',
|
||||
icon: 'el-icon-s-home',
|
||||
icon: 'icon-dengpao1',
|
||||
affix: true
|
||||
},
|
||||
children: [
|
||||
@@ -95,7 +118,7 @@ export default [
|
||||
redirect: '/knowledge/track',
|
||||
meta: {
|
||||
title: '任务轨迹',
|
||||
icon: 'el-icon-s-home',
|
||||
icon: 'icon-dingwei',
|
||||
affix: true
|
||||
},
|
||||
children: [
|
||||
@@ -107,7 +130,7 @@ export default [
|
||||
meta: {
|
||||
breadcrumb: false,
|
||||
title: '任务轨迹',
|
||||
icon: 'el-icon-s-home'
|
||||
icon: 'icon-dingwei'
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -130,7 +153,7 @@ export default [
|
||||
redirect: '/knowledge/rule',
|
||||
meta: {
|
||||
title: '规则管理',
|
||||
icon: 'el-icon-s-home',
|
||||
icon: 'icon-guizeshezhi',
|
||||
affix: true
|
||||
},
|
||||
children: [
|
||||
@@ -154,7 +177,7 @@ export default [
|
||||
redirect: '/dify/workflow',
|
||||
meta: {
|
||||
title: 'Dify',
|
||||
icon: 'el-icon-home',
|
||||
icon: 'icon-notebook',
|
||||
affix: true
|
||||
},
|
||||
children: [
|
||||
@@ -164,7 +187,7 @@ export default [
|
||||
component: () => import('@/views/dify/views/workflow/index.vue'),
|
||||
meta: {
|
||||
title: 'Dify',
|
||||
icon: 'el-icon-home'
|
||||
icon: 'icon-notebook'
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -208,5 +231,27 @@ export default [
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/intelligentAgent',
|
||||
name: 'intelligentAgent',
|
||||
component: layout,
|
||||
redirect: '/intelligentAgent/list',
|
||||
meta: {
|
||||
title: '智能体',
|
||||
icon: 'el-icon-home',
|
||||
affix: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: '/intelligentAgent/list',
|
||||
name: 'intelligentAgent-list',
|
||||
component: () => import('@/views/intelligent-agent/index.vue'),
|
||||
meta: {
|
||||
title: '智能体',
|
||||
icon: 'el-icon-home'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user