Newer
Older
laserPTZFront / src / router / modules / station.js
[wangxitong] on 10 May 2022 594 bytes first commit
/* Layout */
import Layout from '@/layout/Layout'

export const stationRouters = [
  {
    path: 'stationManage',
    component: Layout,
    redirect: '/stationManage',
    name: 'StationManage',
    meta: {
      title: '场站管理',
      icon: 'icon-config', // 图标
      permission: ['/stationManage']// 权限名称
    },
    children: [
      {
        path: '/stationList',
        name: 'StationList',
        component: () => import('@/views/stationManage/listStation'),
        meta: { title: '场站列表', icon: 'dashboard', permission: ['/stationList'] }
      }
    ]
  }]