录音统计
This commit is contained in:
@@ -50,7 +50,7 @@ export const constantRoutes = [
|
||||
children: [{
|
||||
path: 'dashboard',
|
||||
name: 'Dashboard',
|
||||
component: () => import('@/views/dashboard/index'),
|
||||
component: () => import('@/views/dashboard/data-dashboard'),
|
||||
meta: { title: '首页', icon: 'dashboard', affix: true }
|
||||
}]
|
||||
},
|
||||
@@ -66,6 +66,18 @@ export const constantRoutes = [
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/audio-statistics',
|
||||
component: Layout,
|
||||
children: [
|
||||
{
|
||||
path: 'index',
|
||||
name: 'AudioStatistics',
|
||||
component: () => import('@/views/audio-statistics/index'),
|
||||
meta: { title: '录音统计', icon: 'el-icon-data-analysis' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/video',
|
||||
component: Layout,
|
||||
@@ -143,6 +155,43 @@ export const constantRoutes = [
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/knowledge',
|
||||
component: Layout,
|
||||
redirect: '/knowledge/index',
|
||||
name: 'Knowledge',
|
||||
meta: {
|
||||
title: '知识中心',
|
||||
icon: 'el-icon-document'
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'index',
|
||||
name: 'KnowledgeCenter',
|
||||
component: () => import('@/views/knowledge/index'),
|
||||
meta: { title: '知识中心', icon: 'el-icon-document' }
|
||||
},
|
||||
{
|
||||
path: 'dialogue-mining',
|
||||
name: 'DialogueMining',
|
||||
component: () => import('@/views/knowledge/dialogue-mining'),
|
||||
meta: { title: '对话挖掘', icon: 'el-icon-chat-dot-round' }
|
||||
},
|
||||
{
|
||||
path: 'knowledge-base',
|
||||
name: 'KnowledgeBase',
|
||||
component: () => import('@/views/knowledge/knowledge-base'),
|
||||
meta: { title: '知识库', icon: 'el-icon-document' }
|
||||
},
|
||||
{
|
||||
path: 'terminology',
|
||||
name: 'Terminology',
|
||||
component: () => import('@/views/knowledge/terminology'),
|
||||
meta: { title: '汽车术语库', icon: 'el-icon-collection' }
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
path: '/nested',
|
||||
component: Layout,
|
||||
|
||||
Reference in New Issue
Block a user