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

workforce.js 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/workforce',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'workforce',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'workforce',
  10. icon: 'paiban'
  11. },
  12. children: [{
  13. path: '/workforce/appointment',
  14. component: () => import('@/xt_pages/workforce/appointment'),
  15. name: 'appointment',
  16. meta: {
  17. title: 'appointment',
  18. noCache: true
  19. }
  20. },
  21. {
  22. path: '/workforce/sign',
  23. component: () => import('@/xt_pages/workforce/sign'),
  24. hidden: true,
  25. is_menu: false,
  26. name: 'workforcesign',
  27. meta: {
  28. title: 'sign',
  29. noCache: true
  30. }
  31. },
  32. {
  33. path: '/workforce/remind',
  34. component: () => import('@/xt_pages/workforce/remind'),
  35. name: 'remind',
  36. meta: {
  37. title: 'remind',
  38. noCache: true
  39. }
  40. },
  41. {
  42. path: '/dialysis/consumable/index',
  43. component: () => import('@/xt_pages/dialysis/details/consumable/index'),
  44. name: '透前准备',
  45. meta: {
  46. title: '透前准备',
  47. noCache: true
  48. }
  49. },
  50. {
  51. path: '/workforce/schedulePrint',
  52. component: () => import('@/xt_pages/workforce/schedulePrint'),
  53. name: 'schedulePrint',
  54. meta: {
  55. title: 'schedulePrint',
  56. noCache: true
  57. }
  58. },
  59. {
  60. path: '/workforce/schedule/printone',
  61. component: () => import('@/xt_pages/workforce/printOne'),
  62. name: 'printOne',
  63. hidden: true,
  64. is_menu: false,
  65. meta: {
  66. title: 'printOne',
  67. noCache: true
  68. }
  69. },
  70. {
  71. path: '/workforce/template',
  72. component: () => import('@/xt_pages/workforce/template'),
  73. name: 'workforce_template',
  74. hidden: true,
  75. is_menu: false,
  76. meta: {
  77. title: 'workforce_template',
  78. noCache: true
  79. }
  80. },
  81. {
  82. path: '/workforce/schedule/print',
  83. component: () => import('@/xt_pages/workforce/schedule_print'),
  84. name: 'schedule_print',
  85. hidden: true,
  86. is_menu: false,
  87. meta: {
  88. title: 'schedule_print',
  89. noCache: true
  90. }
  91. },
  92. {
  93. path: '/schedule/remind/print',
  94. component: () => import('@/xt_pages/workforce/remind_print'),
  95. name: 'remind_print',
  96. hidden: true,
  97. is_menu: false,
  98. meta: {
  99. title: 'remind_print',
  100. noCache: true
  101. }
  102. },
  103. {
  104. path: '/schedule/remind/print/next',
  105. component: () => import('@/xt_pages/workforce/next_remind_print'),
  106. name: 'next_remind_print',
  107. hidden: true,
  108. is_menu: false,
  109. meta: {
  110. title: 'next_remind_print',
  111. noCache: true
  112. }
  113. },
  114. {
  115. path: '/schedule/remind/print/setting',
  116. component: () => import('@/xt_pages/workforce/remind_print_setting'),
  117. name: 'remind_print_setting',
  118. hidden: true,
  119. is_menu: false,
  120. meta: {
  121. title: 'remind_print_setting',
  122. noCache: true
  123. }
  124. },
  125. {
  126. path: '/schedule/remind/print/setting/one',
  127. component: () => import('@/xt_pages/workforce/remind_print_setting_one'),
  128. name: 'remind_print_setting_one',
  129. hidden: true,
  130. is_menu: false,
  131. meta: {
  132. title: 'remind_print_setting_one',
  133. noCache: true
  134. }
  135. },
  136. {
  137. path: '/scheduleTablePrint',
  138. component: () => import('@/xt_pages/workforce/scheduleTablePrint'),
  139. name: 'scheduleTablePrint',
  140. hidden: true,
  141. is_menu: false,
  142. meta: {
  143. title: 'scheduleTablePrint',
  144. noCache: true
  145. }
  146. },
  147. {
  148. path: '/scheduleTablePrintOne',
  149. component: () => import('@/xt_pages/workforce/scheduleTablePrintOne'),
  150. name: 'scheduleTablePrintOne',
  151. hidden: true,
  152. is_menu: false,
  153. meta: {
  154. title: 'scheduleTablePrintOne',
  155. noCache: true
  156. }
  157. },
  158. {
  159. path: '/scheduleTablePrintTwo',
  160. component: () => import('@/xt_pages/workforce/scheduleTablePrintTwo'),
  161. name: 'scheduleTablePrintTwo',
  162. hidden: true,
  163. is_menu: false,
  164. meta: {
  165. title: 'scheduleTablePrintTwo',
  166. noCache: true
  167. }
  168. },
  169. // {
  170. // path: '/historyWeekTable',
  171. // component: () => import('@/xt_pages/workforce/historyWeekTable'),
  172. // name: 'historyWeekTable',
  173. // hidden: true,
  174. // is_menu: false,
  175. // meta: {
  176. // title: 'historyWeekTable',
  177. // noCache: true
  178. // }
  179. // }
  180. ]
  181. }