123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- import Layout from '@/views/layout/Layout'
- export default {
- path: '/workforce',
- component: Layout,
- redirect: 'noredirect',
- name: 'workforce',
- alwaysShow: true,
- meta: {
- title: 'workforce',
- icon: 'paiban'
- },
- children: [{
- path: '/workforce/appointment',
- component: () => import('@/xt_pages/workforce/appointment'),
- name: 'appointment',
- meta: {
- title: 'appointment',
- noCache: true
- }
- },
- {
- path: '/workforce/sign',
- component: () => import('@/xt_pages/workforce/sign'),
- hidden: true,
- is_menu: false,
- name: 'workforcesign',
- meta: {
- title: 'sign',
- noCache: true
- }
- },
- {
- path: '/workforce/remind',
- component: () => import('@/xt_pages/workforce/remind'),
- name: 'remind',
- meta: {
- title: 'remind',
- noCache: true
- }
- },
- {
- path: '/dialysis/consumable/index',
- component: () => import('@/xt_pages/dialysis/details/consumable/index'),
- name: '透前准备',
- meta: {
- title: '透前准备',
- noCache: true
- }
- },
- {
- path: '/workforce/schedulePrint',
- component: () => import('@/xt_pages/workforce/schedulePrint'),
- name: 'schedulePrint',
- meta: {
- title: 'schedulePrint',
- noCache: true
- }
- },
- {
- path: '/workforce/schedule/printone',
- component: () => import('@/xt_pages/workforce/printOne'),
- name: 'printOne',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'printOne',
- noCache: true
- }
- },
-
- {
- path: '/workforce/template',
- component: () => import('@/xt_pages/workforce/template'),
- name: 'workforce_template',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'workforce_template',
- noCache: true
- }
- },
- {
- path: '/workforce/schedule/print',
- component: () => import('@/xt_pages/workforce/schedule_print'),
- name: 'schedule_print',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'schedule_print',
- noCache: true
- }
- },
- {
- path: '/schedule/remind/print',
- component: () => import('@/xt_pages/workforce/remind_print'),
- name: 'remind_print',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'remind_print',
- noCache: true
- }
- },
- {
- path: '/schedule/remind/print/next',
- component: () => import('@/xt_pages/workforce/next_remind_print'),
- name: 'next_remind_print',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'next_remind_print',
- noCache: true
- }
- },
- {
- path: '/schedule/remind/print/setting',
- component: () => import('@/xt_pages/workforce/remind_print_setting'),
- name: 'remind_print_setting',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'remind_print_setting',
- noCache: true
- }
- },
- {
- path: '/schedule/remind/print/setting/one',
- component: () => import('@/xt_pages/workforce/remind_print_setting_one'),
- name: 'remind_print_setting_one',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'remind_print_setting_one',
- noCache: true
- }
- },
- {
- path: '/scheduleTablePrint',
- component: () => import('@/xt_pages/workforce/scheduleTablePrint'),
- name: 'scheduleTablePrint',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'scheduleTablePrint',
- noCache: true
- }
- },
- {
- path: '/scheduleTablePrintOne',
- component: () => import('@/xt_pages/workforce/scheduleTablePrintOne'),
- name: 'scheduleTablePrintOne',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'scheduleTablePrintOne',
- noCache: true
- }
- },
- {
- path: '/scheduleTablePrintTwo',
- component: () => import('@/xt_pages/workforce/scheduleTablePrintTwo'),
- name: 'scheduleTablePrintTwo',
- hidden: true,
- is_menu: false,
- meta: {
- title: 'scheduleTablePrintTwo',
- noCache: true
- }
- },
- // {
- // path: '/historyWeekTable',
- // component: () => import('@/xt_pages/workforce/historyWeekTable'),
- // name: 'historyWeekTable',
- // hidden: true,
- // is_menu: false,
- // meta: {
- // title: 'historyWeekTable',
- // noCache: true
- // }
- // }
- ]
- }
|