he wei
2025-05-21 4f2e7984e3f63ac3b869f7301cda7e74914922a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
const Layout = () => import('@/layout/index.vue');
 
const systemRouter = {
  path: '/datas',
  component: Layout,
  redirect: 'noRedirect',
  name: 'Datas',
  meta: {
    title: '数据管理',
    icon: 'data'
  },
  children: [
    {
      path: 'realtime',
      component: () => import('@/views/realtime/index.vue'),
      name: 'realtime',
      meta: { title: '实时监测', icon: 'component', noCache: false }
    },
    {
      path: 'device',
      component: () => import('@/views/datas/device.vue'),
      name: 'device',
      meta: { title: '设备管理', icon: 'component', noCache: false }
    },
  ]
};
 
export default systemRouter;