Newer
Older
smartcity_env_front / src / router / modules / video.js
[wangxitong] on 22 Jul 2021 685 bytes first commit
/* Layout */
import Layout from '@/layout/Layout'
export const videoRouters = [
  {
    path: 'video',
    component: Layout,
    redirect: '/videoPoint',
    name: 'Video',
    alwaysShow: true,
    meta: {
      title: '视频监控管理',
      icon: 'icon-config' // 图标
    },
    children: [
      {
        path: '/videoPoint',
        name: 'VideoPoint',
        component: () => import('@/views/video/videoPoint'),
        meta: { title: '视频监控点位', icon: '' }
      }, {
        path: '/videoCase',
        name: 'VideoCase',
        component: () => import('@/views/dashboard/index'),
        meta: { title: '视频案卷管理', icon: '' }
      }
    ]
  }]