feat: dashboard icon
parent
ececd5ef5f
commit
44deb06aaa
|
@ -1,5 +1,5 @@
|
||||||
export default {
|
export default {
|
||||||
dashboard: 'Dashboard',
|
dashboard: 'Home',
|
||||||
about: 'About',
|
about: 'About',
|
||||||
workbench: 'Workbench',
|
workbench: 'Workbench',
|
||||||
analysis: 'Analysis'
|
analysis: 'Analysis'
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
export default {
|
export default {
|
||||||
dashboard: 'Dashboard',
|
dashboard: '首页',
|
||||||
about: '关于',
|
about: '关于',
|
||||||
workbench: '工作台',
|
workbench: '工作台',
|
||||||
analysis: '分析页'
|
analysis: '分析页'
|
||||||
|
|
|
@ -11,7 +11,7 @@ const dashboard: AppRouteModule = {
|
||||||
redirect: '/dashboard/analysis',
|
redirect: '/dashboard/analysis',
|
||||||
meta: {
|
meta: {
|
||||||
orderNo: 10,
|
orderNo: 10,
|
||||||
icon: 'ion:grid-outline',
|
icon: 'ant-design:home-outlined',
|
||||||
title: t('routes.dashboard.dashboard')
|
title: t('routes.dashboard.dashboard')
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
|
@ -21,7 +21,8 @@ const dashboard: AppRouteModule = {
|
||||||
component: () => import('@/views/dashboard/analysis/index.vue'),
|
component: () => import('@/views/dashboard/analysis/index.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
// affix: true,
|
// affix: true,
|
||||||
title: t('routes.dashboard.analysis')
|
title: t('routes.dashboard.analysis'),
|
||||||
|
icon: 'ant-design:bar-chart-outlined'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -29,7 +30,8 @@ const dashboard: AppRouteModule = {
|
||||||
name: 'Workbench',
|
name: 'Workbench',
|
||||||
component: () => import('@/views/dashboard/workbench/index.vue'),
|
component: () => import('@/views/dashboard/workbench/index.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: t('routes.dashboard.workbench')
|
title: t('routes.dashboard.workbench'),
|
||||||
|
icon: 'ant-design:appstore-outlined'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue