feat: 接入大屏修复bug

This commit is contained in:
fyy
2025-07-10 17:52:54 +08:00
parent 0d2a4db6a6
commit b1d0c117fc
60 changed files with 6394 additions and 20 deletions

View File

@@ -100,6 +100,67 @@ const coreRoutes: RouteRecordRaw[] = [
},
],
},
{
component: () => import('#/views/screen/navigation/Navigation.vue'),
name: 'navigation',
path: '/navigation',
meta: {
title: '导航页面', // 或者用 $t('page.navigation.title')
requiresAuth: true, // 如果需要登录验证
},
},
{
component: () => import('#/views/screen/energyConsumptionAnalysis/index.vue'),
name: 'energyAnalysis',
path: '/energyAnalysis',
meta: {
title: '能耗大屏',
requiresAuth: true, // 如果需要登录验证
},
}, {
component: () => import('#/views/screen/property/index.vue'),
name: 'property',
path: '/property',
meta: {
title: '物业大屏',
requiresAuth: true, // 如果需要登录验证
},
}, {
component: () => import('#/views/screen/security/index.vue'),
name: 'security',
path: '/security',
meta: {
title: '安防大屏',
requiresAuth: true, // 如果需要登录验证
},
},
{
component: () => import('#/views/screen/monitor/index.vue'),
name: 'monitor',
path: '/monitor',
meta: {
title: '监控大屏',
requiresAuth: true, // 如果需要登录验证
},
},
{
component: () => import('#/views/screen/security/index.vue'),
name: 'security',
path: '/security',
meta: {
title: '安防大屏',
requiresAuth: true, // 如果需要登录验证
},
},
{
component: () => import('#/views/screen/digitalIntelligence/index.vue'),
name: 'digitalIntelligence',
path: '/digitalIntelligence',
meta: {
title: '商务中心数智管理平台',
requiresAuth: true, // 如果需要登录验证
},
},
];
export { coreRoutes, fallbackNotFoundRoute };