123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import Layout from '@/views/layout/Layout'
- import {
- S_IFMT
- } from 'constants'
-
- export default {
- path: '/device',
- component: Layout,
- redirect: '/device/main',
- name: 'device',
- alwaysShow: true,
- meta: {
- title: 'deviceManage',
- icon: 'shebei'
- },
- children: [
- {
- path: '/device/main',
- component: () => import('@/xt_pages/management/index'),
- // component: () => import("@/xt_pages/device/main"),
- name: 'dialysisMachineManage',
- meta: {
- title: 'dialysisMachineManage',
- noCache: true,
-
- }
- },
- {
- path: '/device/mode',
- component: () => import('@/xt_pages/mode/index'),
- name: 'modemanagement',
- meta: {
- title: 'modemanagement',
- noCache: true,
-
- }
- },
-
- {
- path: '/device/home',
- component: () => import('@/xt_pages/management/home'),
- name: 'managementHome',
- is_menu: false,
- hidden: true,
- meta: {
- title: '设备管理详情页',
- noCache: true,
-
- }
- }
-
- ]
- }
|