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

workforce.js 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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: '/workforce/template',
  43. component: () => import('@/xt_pages/workforce/template'),
  44. name: 'workforce_template',
  45. hidden: true,
  46. is_menu: false,
  47. meta: {
  48. title: 'workforce_template',
  49. noCache: true
  50. }
  51. },
  52. {
  53. path: '/workforce/schedule/print',
  54. component: () => import('@/xt_pages/workforce/schedule_print'),
  55. name: 'schedule_print',
  56. hidden: true,
  57. is_menu: false,
  58. meta: {
  59. title: 'schedule_print',
  60. noCache: true
  61. }
  62. },
  63. {
  64. path: '/schedule/remind/print',
  65. component: () => import('@/xt_pages/workforce/remind_print'),
  66. name: 'remind_print',
  67. hidden: true,
  68. is_menu: false,
  69. meta: {
  70. title: 'remind_print',
  71. noCache: true
  72. }
  73. }
  74. ]
  75. }