初始化项目

This commit is contained in:
2026-03-21 12:28:01 +08:00
parent 52042abcb6
commit 205e09ecd8
18 changed files with 1107 additions and 35 deletions

View File

@@ -51,26 +51,58 @@ const BigScreenRoute: AppRouteRecordRaw = {
path: '/bigScreen',
name: 'BigScreen',
component: SCREEN_LAYOUT,
redirect: '/bigScreen/screenAnalysis',
redirect: '/bigScreen/welcome',
meta: {
title: t('routes.dashboard.bigScreen'),
title: t('routes.screen.bigScreen'),
ignoreAuth: false,
},
children: [
{
path: 'screenAnalysis',
name: 'ScreenAnalysis',
component: () => import('@jeesite/core/layouts/views/screen/analysis/index.vue'),
path: 'welcome',
name: 'ScreenWelcome',
component: () => import('@jeesite/core/layouts/views/screen/welcome/index.vue'),
meta: {
title: t('routes.dashboard.bigScreen'),
title: t('routes.screen.bigScreen'),
},
},
{
path: 'home',
name: 'ScreenHome',
component: () => import('@jeesite/core/layouts/views/screen/welcome/Home/index.vue'),
meta: {
title: t('routes.screen.bigScreen'),
},
},
{
path: 'work',
name: 'ScreenWork',
component: () => import('@jeesite/core/layouts/views/screen/welcome/Work/index.vue'),
meta: {
title: t('routes.screen.bigScreen'),
},
},
{
path: 'erp',
name: 'ScreenErp',
component: () => import('@jeesite/core/layouts/views/screen/welcome/Erp/index.vue'),
meta: {
title: t('routes.screen.bigScreen'),
},
},
{
path: 'sys',
name: 'ScreenSys',
component: () => import('@jeesite/core/layouts/views/screen/welcome/Sys/index.vue'),
meta: {
title: t('routes.screen.bigScreen'),
},
},
{
path: 'screenSetting',
path: 'setting',
name: 'ScreenSetting',
component: () => import('@jeesite/core/layouts/views/screen/setting/index.vue'),
meta: {
title: t('routes.dashboard.bigSetting'),
title: t('routes.screen.bigSetting'),
},
},
],