告警大屏css初稿,大屏小图echart测试页

This commit is contained in:
龚皓
2024-11-01 13:19:38 +08:00
parent e16bda93b1
commit f456cdaa8c
12 changed files with 1061 additions and 155 deletions

View File

@@ -11,6 +11,7 @@ import Home from '@/html/Home.vue';
import DataStatistics from '@/html/DataStatistics.vue';
import Cameras from '@/components/Cameras.vue';
import Settings from '@/components/Settings.vue';
import ViewList from '@/html/ViewList.vue';
const routes = [
{
@@ -72,6 +73,12 @@ const routes = [
name: 'Settings',
component: Settings,
meta: { requiresAuth: true }
},
{
path:'/viewList',
name: 'ViewList',
component: ViewList,
meta: { requiresAuth: true }
}
]
},