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

systems.js 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/system',
  4. component: Layout,
  5. redirect: '/role/admin/manage',
  6. name: 'system',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'systemManage',
  10. icon: 'system'
  11. },
  12. children: [{
  13. path: '/role/admin/manage',
  14. component: () => import('@/xt_pages/role/admin'),
  15. name: 'adminManage',
  16. meta: {
  17. title: 'adminManage',
  18. noCache: true,
  19. }
  20. },
  21. {
  22. path: '/role/manage',
  23. component: () => import('@/xt_pages/role/role'),
  24. name: 'roleManage',
  25. meta: {
  26. title: 'roleManage',
  27. noCache: true,
  28. }
  29. },
  30. {
  31. path: '/role/admin/create',
  32. component: () => import('@/xt_pages/role/CreateAdmin'),
  33. name: 'addAdmin',
  34. meta: {
  35. title: 'addAdmin',
  36. noCache: true
  37. },
  38. hidden: true,
  39. is_menu: false
  40. },
  41. {
  42. path: '/role/admin/edit',
  43. component: () => import('@/xt_pages/role/EditAdmin'),
  44. name: 'editAdmin',
  45. meta: {
  46. title: 'editAdmin',
  47. noCache: true
  48. },
  49. hidden: true,
  50. is_menu: false
  51. },
  52. {
  53. path: '/role/perview',
  54. component: () => import('@/xt_pages/role/EditPerview'),
  55. name: 'setupPerview',
  56. meta: {
  57. title: 'setupPerview',
  58. noCache: true
  59. },
  60. hidden: true,
  61. is_menu: false
  62. },
  63. // {
  64. // path: '/role/admin/specialpermission',
  65. // component: () => import('@/xt_pages/role/special_permission'),
  66. // name: 'special_permission_manage',
  67. // meta: {
  68. // title: 'special_permission_manage'
  69. // }
  70. // },
  71. {
  72. path: '/data/dictionary',
  73. component: () => import('@/xt_pages/data/index'),
  74. name: 'dictionary',
  75. meta: {
  76. title: 'data_dictionary',
  77. noCache: true,
  78. }
  79. },
  80. {
  81. path: '/data/template',
  82. component: () => import('@/xt_pages/data/template'),
  83. name: 'template',
  84. meta: {
  85. title: 'template',
  86. noCache: true,
  87. }
  88. },{
  89. path: '/data/prescription',
  90. component: () => import('@/xt_pages/data/prescription'),
  91. name: 'prescription',
  92. meta: {
  93. title: 'system_prescription'
  94. }
  95. }, {
  96. path: '/data/druguse',
  97. component: () => import('@/xt_pages/data/druguseTemplate'),
  98. name: 'druguse',
  99. meta: {
  100. title: 'druguse'
  101. }
  102. }, {
  103. path: '/data/showconfig',
  104. component: () => import('@/xt_pages/data/showConfig'),
  105. name: 'showconfig',
  106. meta: {
  107. title: 'showconfig'
  108. }
  109. },{
  110. path: '/data/print',
  111. component: () => import('@/xt_pages/data/printTemplate'),
  112. name: 'printTemplate',
  113. meta: {
  114. title: 'printTemplate'
  115. }
  116. }, {
  117. path: '/data/hisconfig',
  118. component: () => import('@/xt_pages/data/hisConfig'),
  119. name: 'hisconfig',
  120. meta: {
  121. title: 'hisconfig'
  122. }
  123. },
  124. ]
  125. }