项目初始化

This commit is contained in:
2026-03-19 12:29:04 +08:00
parent 3b411f48eb
commit 2b5863a739
3 changed files with 8 additions and 7 deletions

View File

@@ -4,4 +4,5 @@ export default {
workbench: 'Workbench',
hr: 'HR',
analysis: 'Analysis',
bigScreen: 'BigScreen',
};

View File

@@ -4,4 +4,5 @@ export default {
analysis: '仪表盘',
hr: '人力资源',
about: '关于我们',
bigScreen: '大屏可视化',
};

View File

@@ -4,25 +4,24 @@ import { SCREEN_LAYOUT } from '@jeesite/core/router/constant';
import { t } from '@jeesite/core/hooks/web/useI18n';
const screen: AppRouteModule = {
path: '/screen',
name: 'Screen',
path: '/bigScreen',
name: 'BigScreen',
component: SCREEN_LAYOUT,
redirect: '/screen/analysis',
meta: {
orderNo: 10,
icon: 'i-ant-design:home-outlined',
title: t('routes.dashboard.dashboard'),
title: t('routes.dashboard.bigScreen'),
},
children: [
{
path: 'analysis',
name: 'Analysis',
path: 'bigScreen',
name: 'BigScreen',
component: () => import('@jeesite/core/layouts/views/screen/analysis/index.vue'),
meta: {
// affix: true,
icon: 'i-ant-design:home-outlined',
tabIcon: 'i-ant-design:home-outlined',
title: t('routes.dashboard.analysis'),
title: t('routes.dashboard.bigScreen'),
},
},
],