Newer
Older
safe_production_front / src / router / modules / bigScreen.ts
dutingting on 27 Dec 737 bytes gm部署版本
import type { Route } from '@/global'

// const Layout = () => import('@/layouts/index.vue')
// const Layout = () => import('@/layouts/index_noSiderbar.vue')

const routes: Route.recordRaw[] = [
  // 安全生产智慧监管平台
  {
    path: '/bs',
    // component: Layout,
    redirect: '/bs/index',
    name: 'BigScreen',
    meta: {
      title: '',
      icon: 'icon-map',
      auth: '/bigScreen',
    },
    children: [
      {
        path: '/bs',
        component: () => import('@/views/bigScreen/index.vue'),
        name: 'BigScreenIndex',
        meta: {
          title: '安全生产智慧监管平台',
          icon: 'icon-map',
          auth: '/bigScreen',
        },
      },
    ],
  },
]

export default routes