Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

device.js 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. import Layout from '@/views/layout/Layout'
  2. import {
  3. S_IFMT
  4. } from 'constants'
  5. export default {
  6. path: '/device',
  7. component: Layout,
  8. redirect: '/device/main',
  9. name: 'device',
  10. alwaysShow: true,
  11. meta: {
  12. title: 'deviceManage',
  13. icon: 'shebei'
  14. },
  15. children: [{
  16. path: '/device/zones',
  17. component: () => import('@/xt_pages/device/zone_main'),
  18. name: 'deviceZoneManage',
  19. meta: {
  20. title: 'deviceZoneManage',
  21. noCache: true,
  22. }
  23. },
  24. {
  25. path: '/device/groups',
  26. component: () => import('@/xt_pages/device/group_main'),
  27. name: 'deviceGroupManage',
  28. meta: {
  29. title: 'deviceGroupManage',
  30. noCache: true,
  31. }
  32. },
  33. {
  34. path: '/device/numbers',
  35. component: () => import('@/xt_pages/device/number_main'),
  36. name: 'deviceNumberManage',
  37. meta: {
  38. title: 'deviceNumberManage',
  39. noCache: true,
  40. }
  41. },
  42. {
  43. path: '/device/mode',
  44. component: () => import('@/xt_pages/mode/index'),
  45. name: 'modemanagement',
  46. meta: {
  47. title: 'modemanagement',
  48. noCache: true,
  49. }
  50. },
  51. {
  52. path: '/device/main',
  53. component: () => import('@/xt_pages/management/index'),
  54. // component: () => import("@/xt_pages/device/main"),
  55. name: 'dialysisMachineManage',
  56. meta: {
  57. title: 'dialysisMachineManage',
  58. noCache: true,
  59. }
  60. },
  61. {
  62. path: '/device/home',
  63. component: () => import('@/xt_pages/management/home'),
  64. name: 'managementHome',
  65. is_menu: false,
  66. hidden: true,
  67. meta: {
  68. title: '设备管理详情页',
  69. noCache: true,
  70. }
  71. }
  72. ]
  73. }