|
@@ -124,7 +124,7 @@ export const xt_constantRouterMap = [
|
124
|
124
|
|
125
|
125
|
// ////////////////////////////
|
126
|
126
|
// 本地开始
|
127
|
|
- // /////////////////////////////
|
|
127
|
+ /////////////////////////////
|
128
|
128
|
{
|
129
|
129
|
path: '/patients',
|
130
|
130
|
component: Layout,
|
|
@@ -532,11 +532,12 @@ export const xt_constantRouterMap = [
|
532
|
532
|
{ path: '/role/perview', component: () => import('@/xt_pages/role/EditPerview'), name: 'setupPerview', meta: { title: 'setupPerview', noCache: true }, hidden: true, is_menu: false },
|
533
|
533
|
{ path: '/role/admin/specialpermission', component: () => import('@/xt_pages/role/special_permission'), name: 'special_permission_manage', meta: { title: 'special_permission_manage' }}
|
534
|
534
|
]
|
535
|
|
- }, {
|
|
535
|
+ },
|
|
536
|
+ {
|
536
|
537
|
path: '/fullscreenboard',
|
537
|
538
|
component: () => import('@/xt_pages/fullscreenboard/index'),
|
538
|
539
|
hidden: true
|
539
|
|
- },
|
|
540
|
+ }
|
540
|
541
|
// /////////////本地要end/
|
541
|
542
|
]
|
542
|
543
|
|
|
@@ -548,400 +549,399 @@ export default new Router({
|
548
|
549
|
|
549
|
550
|
export const xt_asyncRouterMap = [
|
550
|
551
|
// //////////////////////////////////线在开始
|
551
|
|
- {
|
552
|
|
- path: '/patients',
|
553
|
|
- component: Layout,
|
554
|
|
- redirect: 'noredirect',
|
555
|
|
- name: 'User',
|
556
|
|
- alwaysShow: true,
|
557
|
|
- meta: {
|
558
|
|
- title: 'user',
|
559
|
|
- icon: 'bingren'
|
560
|
|
- },
|
561
|
|
- children: [
|
562
|
|
- {
|
563
|
|
- path: '/patients/patients',
|
564
|
|
- component: () => import('@/xt_pages/user/patients'),
|
565
|
|
- name: 'Patient',
|
566
|
|
- meta: { title: 'patient', noCache: true }
|
567
|
|
- },
|
568
|
|
- {
|
569
|
|
- path: '/patients/create',
|
570
|
|
- component: () => import('@/xt_pages/user/createPatient'),
|
571
|
|
- name: 'createPatient',
|
572
|
|
- meta: { title: 'createPatient', noCache: true }
|
573
|
|
- },
|
574
|
|
- {
|
575
|
|
- path: '/patients/patient/:id',
|
576
|
|
- component: () => import('@/xt_pages/user/patientInfo'),
|
577
|
|
- hidden: true,
|
578
|
|
- is_menu: false,
|
579
|
|
- name: 'patient Page',
|
580
|
|
- meta: { title: 'patientPage', noCache: true }
|
581
|
|
- },
|
582
|
|
- {
|
583
|
|
- path: '/patients/patient/:id/edit',
|
584
|
|
- component: () => import('@/xt_pages/user/editPatient'),
|
585
|
|
- hidden: true,
|
586
|
|
- is_menu: false,
|
587
|
|
- name: 'Edit Patient',
|
588
|
|
- meta: { title: 'editPatient', noCache: true }
|
589
|
|
- },
|
590
|
|
- {
|
591
|
|
- path: '/patients/patient/:id/dialysisSolution',
|
592
|
|
- component: () => import('@/xt_pages/user/dialysisSolution'),
|
593
|
|
- hidden: true,
|
594
|
|
- is_menu: false,
|
595
|
|
- name: 'dialysisSolution',
|
596
|
|
- meta: { title: 'dialysisSolution', noCache: true }
|
597
|
|
- },
|
598
|
|
- {
|
599
|
|
- path: '/patients/patient/:id/weight',
|
600
|
|
- component: () => import('@/xt_pages/user/weight'),
|
601
|
|
- hidden: true,
|
602
|
|
- is_menu: false,
|
603
|
|
- name: 'weight',
|
604
|
|
- meta: { title: 'weight', noCache: true }
|
605
|
|
- },
|
606
|
|
- {
|
607
|
|
- path: '/patients/patient/:id/dialysisRecord',
|
608
|
|
- component: () => import('@/xt_pages/user/dialysisRecord'),
|
609
|
|
- hidden: true,
|
610
|
|
- is_menu: false,
|
611
|
|
- name: 'dialysisRecord',
|
612
|
|
- meta: { title: 'dialysisRecord', noCache: true }
|
613
|
|
- },
|
614
|
|
- {
|
615
|
|
- path: '/patients/patient/:id/scheduling',
|
616
|
|
- component: () => import('@/xt_pages/user/scheduling'),
|
617
|
|
- hidden: true,
|
618
|
|
- is_menu: false,
|
619
|
|
- name: 'scheduling',
|
620
|
|
- meta: { title: 'scheduling', noCache: true }
|
621
|
|
- },
|
622
|
|
- {
|
623
|
|
- path: '/patients/patient/:id/doctorAdvice',
|
624
|
|
- component: () => import('@/xt_pages/user/doctorAdvice'),
|
625
|
|
- hidden: true,
|
626
|
|
- is_menu: false,
|
627
|
|
- name: 'doctorAdvice',
|
628
|
|
- meta: { title: 'doctorAdvice', noCache: true }
|
629
|
|
- },
|
630
|
|
- {
|
631
|
|
- path: '/patients/inspection',
|
632
|
|
- component: () => import('@/xt_pages/user/inspection'),
|
633
|
|
- hidden: true,
|
634
|
|
- is_menu: false,
|
635
|
|
- name: 'Inspection',
|
636
|
|
- meta: { title: 'inspection', noCache: true }
|
637
|
|
- },
|
638
|
|
- {
|
639
|
|
- path: '/patients/course',
|
640
|
|
- component: () => import('@/xt_pages/user/courseOfDisease'),
|
641
|
|
- hidden: true,
|
642
|
|
- is_menu: false,
|
643
|
|
- name: 'CourseOfDiseaseManage',
|
644
|
|
- meta: { title: 'CourseOfDiseaseManage', noCache: true }
|
645
|
|
- },
|
646
|
|
- {
|
647
|
|
- path: '/patients/rescue',
|
648
|
|
- component: () => import('@/xt_pages/user/rescueRecord'),
|
649
|
|
- hidden: true,
|
650
|
|
- is_menu: false,
|
651
|
|
- name: 'RescueRecord',
|
652
|
|
- meta: { title: 'RescueRecord', noCache: true }
|
653
|
|
- },
|
654
|
|
- {
|
655
|
|
- path: '/patients/patient/:id/proeducation',
|
656
|
|
- component: () => import('@/xt_pages/user/proeducation'),
|
657
|
|
- hidden: true,
|
658
|
|
- is_menu: false,
|
659
|
|
- name: 'proeducation',
|
660
|
|
- meta: { title: 'proeducation', noCache: true }
|
661
|
|
- }
|
662
|
|
- ]
|
663
|
|
- },
|
664
|
|
- {
|
665
|
|
- path: '/workforce',
|
666
|
|
- component: Layout,
|
667
|
|
- redirect: 'noredirect',
|
668
|
|
- name: 'workforce',
|
669
|
|
- alwaysShow: true,
|
670
|
|
- meta: {
|
671
|
|
- title: 'workforce',
|
672
|
|
- icon: 'paiban'
|
673
|
|
- },
|
674
|
|
- children: [
|
675
|
|
- {
|
676
|
|
- path: '/workforce/appointment',
|
677
|
|
- component: () => import('@/xt_pages/workforce/appointment'),
|
678
|
|
- name: 'appointment',
|
679
|
|
- meta: { title: 'appointment', noCache: true }
|
680
|
|
- },
|
681
|
|
- {
|
682
|
|
- path: '/workforce/sign',
|
683
|
|
- component: () => import('@/xt_pages/workforce/sign'),
|
684
|
|
- hidden: true,
|
685
|
|
- is_menu: false,
|
686
|
|
- name: 'workforcesign',
|
687
|
|
- meta: { title: 'sign', noCache: true }
|
688
|
|
- },
|
689
|
|
- {
|
690
|
|
- path: '/workforce/remind',
|
691
|
|
- component: () => import('@/xt_pages/workforce/remind'),
|
692
|
|
- name: 'remind',
|
693
|
|
- meta: { title: 'remind', noCache: true }
|
694
|
|
- },
|
695
|
|
- {
|
696
|
|
- path: "/workforce/template",
|
697
|
|
- component: () => import("@/xt_pages/workforce/template"),
|
698
|
|
- name: "workforce_template",
|
699
|
|
- hidden: true,
|
700
|
|
- is_menu: false,
|
701
|
|
- meta: { title: 'workforce_template', noCache: true }
|
702
|
|
- },
|
703
|
|
- {
|
704
|
|
- path: "/workforce/schedule/print",
|
705
|
|
- component: () => import("@/xt_pages/workforce/schedule_print"),
|
706
|
|
- name: "schedule_print",
|
707
|
|
- hidden: true,
|
708
|
|
- is_menu: false,
|
709
|
|
- meta: { title: 'schedule_print', noCache: true }
|
710
|
|
- },
|
711
|
|
- ]
|
712
|
|
- },
|
713
|
|
- {
|
714
|
|
- path: '/sign',
|
715
|
|
- component: Layout,
|
716
|
|
- redirct: '/sign/index',
|
717
|
|
- children: [{
|
718
|
|
- path: '/sign',
|
719
|
|
- component: () => import('@/xt_pages/sign/index'),
|
720
|
|
- name: 'sign',
|
721
|
|
- meta: { title: 'signWeight', icon: 'sign', noCache: true }
|
722
|
|
- }]
|
723
|
|
- },
|
724
|
|
- {
|
725
|
|
- path: '/dialysis/',
|
726
|
|
- component: Layout,
|
727
|
|
- redirect: 'noredirect',
|
728
|
|
- name: 'dialysis',
|
729
|
|
- alwaysShow: true,
|
730
|
|
- meta: {
|
731
|
|
- title: 'dialysis',
|
732
|
|
- icon: 'touxi'
|
733
|
|
- },
|
734
|
|
- children: [
|
735
|
|
- { path: '/dialysis/dialysisrecord', component: () => import('@/xt_pages/dialysis/schedualPatient'), name: '透析记录', meta: { title: '透析记录' }},
|
736
|
|
- {
|
737
|
|
- path: '/dialysis/record/:id',
|
738
|
|
- component: () => import('@/xt_pages/dialysis/dialysisPage'),
|
739
|
|
- hidden: true,
|
740
|
|
- is_menu: false,
|
741
|
|
- name: 'paper',
|
742
|
|
- meta: { title: 'paper', noCache: true }
|
743
|
|
- },
|
744
|
|
- {
|
745
|
|
- path: '/dialysis/print',
|
746
|
|
- component: () => import('@/xt_pages/dialysis/dialysisPrintOrder'),
|
747
|
|
- hidden: true,
|
748
|
|
- is_menu: false,
|
749
|
|
- name: 'dialysisPrintOrder',
|
750
|
|
- meta: { title: 'dialysisPrintOrder', noCache: true }
|
751
|
|
- },
|
|
552
|
+ // {
|
|
553
|
+ // path: '/patients',
|
|
554
|
+ // component: Layout,
|
|
555
|
+ // redirect: 'noredirect',
|
|
556
|
+ // name: 'User',
|
|
557
|
+ // alwaysShow: true,
|
|
558
|
+ // meta: {
|
|
559
|
+ // title: 'user',
|
|
560
|
+ // icon: 'bingren'
|
|
561
|
+ // },
|
|
562
|
+ // children: [
|
|
563
|
+ // {
|
|
564
|
+ // path: '/patients/patients',
|
|
565
|
+ // component: () => import('@/xt_pages/user/patients'),
|
|
566
|
+ // name: 'Patient',
|
|
567
|
+ // meta: { title: 'patient', noCache: true }
|
|
568
|
+ // },
|
|
569
|
+ // {
|
|
570
|
+ // path: '/patients/create',
|
|
571
|
+ // component: () => import('@/xt_pages/user/createPatient'),
|
|
572
|
+ // name: 'createPatient',
|
|
573
|
+ // meta: { title: 'createPatient', noCache: true }
|
|
574
|
+ // },
|
|
575
|
+ // {
|
|
576
|
+ // path: '/patients/patient/:id',
|
|
577
|
+ // component: () => import('@/xt_pages/user/patientInfo'),
|
|
578
|
+ // hidden: true,
|
|
579
|
+ // is_menu: false,
|
|
580
|
+ // name: 'patient Page',
|
|
581
|
+ // meta: { title: 'patientPage', noCache: true }
|
|
582
|
+ // },
|
|
583
|
+ // {
|
|
584
|
+ // path: '/patients/patient/:id/edit',
|
|
585
|
+ // component: () => import('@/xt_pages/user/editPatient'),
|
|
586
|
+ // hidden: true,
|
|
587
|
+ // is_menu: false,
|
|
588
|
+ // name: 'Edit Patient',
|
|
589
|
+ // meta: { title: 'editPatient', noCache: true }
|
|
590
|
+ // },
|
|
591
|
+ // {
|
|
592
|
+ // path: '/patients/patient/:id/dialysisSolution',
|
|
593
|
+ // component: () => import('@/xt_pages/user/dialysisSolution'),
|
|
594
|
+ // hidden: true,
|
|
595
|
+ // is_menu: false,
|
|
596
|
+ // name: 'dialysisSolution',
|
|
597
|
+ // meta: { title: 'dialysisSolution', noCache: true }
|
|
598
|
+ // },
|
|
599
|
+ // {
|
|
600
|
+ // path: '/patients/patient/:id/weight',
|
|
601
|
+ // component: () => import('@/xt_pages/user/weight'),
|
|
602
|
+ // hidden: true,
|
|
603
|
+ // is_menu: false,
|
|
604
|
+ // name: 'weight',
|
|
605
|
+ // meta: { title: 'weight', noCache: true }
|
|
606
|
+ // },
|
|
607
|
+ // {
|
|
608
|
+ // path: '/patients/patient/:id/dialysisRecord',
|
|
609
|
+ // component: () => import('@/xt_pages/user/dialysisRecord'),
|
|
610
|
+ // hidden: true,
|
|
611
|
+ // is_menu: false,
|
|
612
|
+ // name: 'dialysisRecord',
|
|
613
|
+ // meta: { title: 'dialysisRecord', noCache: true }
|
|
614
|
+ // },
|
|
615
|
+ // {
|
|
616
|
+ // path: '/patients/patient/:id/scheduling',
|
|
617
|
+ // component: () => import('@/xt_pages/user/scheduling'),
|
|
618
|
+ // hidden: true,
|
|
619
|
+ // is_menu: false,
|
|
620
|
+ // name: 'scheduling',
|
|
621
|
+ // meta: { title: 'scheduling', noCache: true }
|
|
622
|
+ // },
|
|
623
|
+ // {
|
|
624
|
+ // path: '/patients/patient/:id/doctorAdvice',
|
|
625
|
+ // component: () => import('@/xt_pages/user/doctorAdvice'),
|
|
626
|
+ // hidden: true,
|
|
627
|
+ // is_menu: false,
|
|
628
|
+ // name: 'doctorAdvice',
|
|
629
|
+ // meta: { title: 'doctorAdvice', noCache: true }
|
|
630
|
+ // },
|
|
631
|
+ // {
|
|
632
|
+ // path: '/patients/inspection',
|
|
633
|
+ // component: () => import('@/xt_pages/user/inspection'),
|
|
634
|
+ // hidden: true,
|
|
635
|
+ // is_menu: false,
|
|
636
|
+ // name: 'Inspection',
|
|
637
|
+ // meta: { title: 'inspection', noCache: true }
|
|
638
|
+ // },
|
|
639
|
+ // {
|
|
640
|
+ // path: '/patients/course',
|
|
641
|
+ // component: () => import('@/xt_pages/user/courseOfDisease'),
|
|
642
|
+ // hidden: true,
|
|
643
|
+ // is_menu: false,
|
|
644
|
+ // name: 'CourseOfDiseaseManage',
|
|
645
|
+ // meta: { title: 'CourseOfDiseaseManage', noCache: true }
|
|
646
|
+ // },
|
|
647
|
+ // {
|
|
648
|
+ // path: '/patients/rescue',
|
|
649
|
+ // component: () => import('@/xt_pages/user/rescueRecord'),
|
|
650
|
+ // hidden: true,
|
|
651
|
+ // is_menu: false,
|
|
652
|
+ // name: 'RescueRecord',
|
|
653
|
+ // meta: { title: 'RescueRecord', noCache: true }
|
|
654
|
+ // },
|
|
655
|
+ // {
|
|
656
|
+ // path: '/patients/patient/:id/proeducation',
|
|
657
|
+ // component: () => import('@/xt_pages/user/proeducation'),
|
|
658
|
+ // hidden: true,
|
|
659
|
+ // is_menu: false,
|
|
660
|
+ // name: 'proeducation',
|
|
661
|
+ // meta: { title: 'proeducation', noCache: true }
|
|
662
|
+ // }
|
|
663
|
+ // ]
|
|
664
|
+ // },
|
|
665
|
+ // {
|
|
666
|
+ // path: '/workforce',
|
|
667
|
+ // component: Layout,
|
|
668
|
+ // redirect: 'noredirect',
|
|
669
|
+ // name: 'workforce',
|
|
670
|
+ // alwaysShow: true,
|
|
671
|
+ // meta: {
|
|
672
|
+ // title: 'workforce',
|
|
673
|
+ // icon: 'paiban'
|
|
674
|
+ // },
|
|
675
|
+ // children: [
|
|
676
|
+ // {
|
|
677
|
+ // path: '/workforce/appointment',
|
|
678
|
+ // component: () => import('@/xt_pages/workforce/appointment'),
|
|
679
|
+ // name: 'appointment',
|
|
680
|
+ // meta: { title: 'appointment', noCache: true }
|
|
681
|
+ // },
|
|
682
|
+ // {
|
|
683
|
+ // path: '/workforce/sign',
|
|
684
|
+ // component: () => import('@/xt_pages/workforce/sign'),
|
|
685
|
+ // hidden: true,
|
|
686
|
+ // is_menu: false,
|
|
687
|
+ // name: 'workforcesign',
|
|
688
|
+ // meta: { title: 'sign', noCache: true }
|
|
689
|
+ // },
|
|
690
|
+ // {
|
|
691
|
+ // path: '/workforce/remind',
|
|
692
|
+ // component: () => import('@/xt_pages/workforce/remind'),
|
|
693
|
+ // name: 'remind',
|
|
694
|
+ // meta: { title: 'remind', noCache: true }
|
|
695
|
+ // },
|
|
696
|
+ // {
|
|
697
|
+ // path: "/workforce/template",
|
|
698
|
+ // component: () => import("@/xt_pages/workforce/template"),
|
|
699
|
+ // name: "workforce_template",
|
|
700
|
+ // hidden: true,
|
|
701
|
+ // is_menu: false,
|
|
702
|
+ // meta: { title: 'workforce_template', noCache: true }
|
|
703
|
+ // },
|
|
704
|
+ // {
|
|
705
|
+ // path: "/workforce/schedule/print",
|
|
706
|
+ // component: () => import("@/xt_pages/workforce/schedule_print"),
|
|
707
|
+ // name: "schedule_print",
|
|
708
|
+ // hidden: true,
|
|
709
|
+ // is_menu: false,
|
|
710
|
+ // meta: { title: 'schedule_print', noCache: true }
|
|
711
|
+ // },
|
|
712
|
+ // ]
|
|
713
|
+ // },
|
|
714
|
+ // {
|
|
715
|
+ // path: '/sign',
|
|
716
|
+ // component: Layout,
|
|
717
|
+ // redirct: '/sign/index',
|
|
718
|
+ // children: [{
|
|
719
|
+ // path: '/sign',
|
|
720
|
+ // component: () => import('@/xt_pages/sign/index'),
|
|
721
|
+ // name: 'sign',
|
|
722
|
+ // meta: { title: 'signWeight', icon: 'sign', noCache: true }
|
|
723
|
+ // }]
|
|
724
|
+ // },
|
|
725
|
+ // {
|
|
726
|
+ // path: '/dialysis/',
|
|
727
|
+ // component: Layout,
|
|
728
|
+ // redirect: 'noredirect',
|
|
729
|
+ // name: 'dialysis',
|
|
730
|
+ // alwaysShow: true,
|
|
731
|
+ // meta: {
|
|
732
|
+ // title: 'dialysis',
|
|
733
|
+ // icon: 'touxi'
|
|
734
|
+ // },
|
|
735
|
+ // children: [
|
|
736
|
+ // { path: '/dialysis/dialysisrecord', component: () => import('@/xt_pages/dialysis/schedualPatient'), name: '透析记录', meta: { title: '透析记录' }},
|
|
737
|
+ // {
|
|
738
|
+ // path: '/dialysis/record/:id',
|
|
739
|
+ // component: () => import('@/xt_pages/dialysis/dialysisPage'),
|
|
740
|
+ // hidden: true,
|
|
741
|
+ // is_menu: false,
|
|
742
|
+ // name: 'paper',
|
|
743
|
+ // meta: { title: 'paper', noCache: true }
|
|
744
|
+ // },
|
|
745
|
+ // {
|
|
746
|
+ // path: '/dialysis/print',
|
|
747
|
+ // component: () => import('@/xt_pages/dialysis/dialysisPrintOrder'),
|
|
748
|
+ // hidden: true,
|
|
749
|
+ // is_menu: false,
|
|
750
|
+ // name: 'dialysisPrintOrder',
|
|
751
|
+ // meta: { title: 'dialysisPrintOrder', noCache: true }
|
|
752
|
+ // },
|
752
|
753
|
|
753
|
|
- // { path: 'advice', component: () => import('@/xt_pages/dialysis/doctorAdvice'), name: 'advice', meta: { title: 'advice' }},
|
754
|
|
- // { path: 'prepare', component: () => import('@/xt_pages/dialysis/dialysisPrepare'), name: 'prepare', meta: { title: 'prepare' }},
|
755
|
|
- { path: '/dialysis/watch', component: () => import('@/xt_pages/dialysis/bloodPresssWatch'), name: 'watch', meta: { title: 'watch' }},
|
756
|
|
- { path: '/dialysis/details', component: () => import('@/xt_pages/dialysis/details'), name: 'details', meta: { title: 'details' }, is_menu: false,},
|
757
|
|
- {
|
758
|
|
- path: '/dialysis/print/batch',
|
759
|
|
- component: () => import('@/xt_pages/dialysis/batch_print/batch_print_order'),
|
760
|
|
- hidden: true,
|
761
|
|
- is_menu: false,
|
762
|
|
- name: 'dialysis_batch_print',
|
763
|
|
- meta: { title: '批量打印', noCache: true }
|
764
|
|
- },
|
765
|
|
- { path: '/dialysis/board', component: () => import('@/xt_pages/dialysis/bulletinBoard'), name: '数据看板', meta: { title: '数据看板' }},
|
766
|
|
- ]
|
767
|
|
- },
|
768
|
|
- {
|
769
|
|
- path: '/stock/',
|
770
|
|
- component: Layout,
|
771
|
|
- redirect: 'noredirect',
|
772
|
|
- name: 'stockManage',
|
773
|
|
- meta: { title: 'stockManage', icon: 'stock' },
|
774
|
|
- children: [
|
775
|
|
- {
|
776
|
|
- path: '/stock/config',
|
777
|
|
- component: () => import('@/xt_pages/stock/index'),
|
778
|
|
- name: 'config',
|
779
|
|
- meta: { title: 'config' }
|
780
|
|
- },
|
781
|
|
- {
|
782
|
|
- path: '/stock/in',
|
783
|
|
- component: () => import('@/xt_pages/stock/stockInOrder'),
|
784
|
|
- name: 'stockInOrder',
|
785
|
|
- meta: { title: 'stockInOrder', noCache: true }
|
786
|
|
- }, {
|
787
|
|
- path: '/stock/return',
|
788
|
|
- component: () => import('@/xt_pages/stock/salesReturnOrder'),
|
789
|
|
- name: 'salesReturnOrder',
|
790
|
|
- meta: { title: 'salesReturnOrder', noCache: true }
|
791
|
|
- },
|
792
|
|
- {
|
793
|
|
- path: '/stock/out',
|
794
|
|
- component: () => import('@/xt_pages/stock/stockOutOrder'),
|
795
|
|
- name: 'stockOutOrder',
|
796
|
|
- meta: { title: 'stockOutOrder', noCache: true }
|
797
|
|
- }, {
|
798
|
|
- path: '/stock/cancel',
|
799
|
|
- component: () => import('@/xt_pages/stock/cancelStockOrder'),
|
800
|
|
- name: 'cancelStockOrder',
|
801
|
|
- meta: { title: 'cancelStockOrder', noCache: true }
|
802
|
|
- }, {
|
803
|
|
- path: '/stock/in/other',
|
804
|
|
- component: () => import('@/xt_pages/stock/otherStockInOrder'),
|
805
|
|
- name: 'otherStockInOrder',
|
806
|
|
- meta: { title: 'otherStockInOrder', noCache: true }
|
807
|
|
- }, {
|
808
|
|
- path: '/stock/return/other',
|
809
|
|
- component: () => import('@/xt_pages/stock/otherSalesReturnOrder'),
|
810
|
|
- name: 'otherSalesReturnOrder',
|
811
|
|
- meta: { title: 'otherSalesReturnOrder', noCache: true }
|
812
|
|
- },{
|
813
|
|
- path: '/stock/out/other',
|
814
|
|
- component: () => import('@/xt_pages/stock/otherStockOutOrder'),
|
815
|
|
- name: 'otherStockOutOrder',
|
816
|
|
- meta: { title: 'otherStockOutOrder', noCache: true }
|
817
|
|
- }, {
|
818
|
|
- path: '/stock/cancel/other',
|
819
|
|
- component: () => import('@/xt_pages/stock/otherCancelStockOrder'),
|
820
|
|
- name: 'otherCancelStockOrder',
|
821
|
|
- meta: { title: 'otherCancelStockOrder', noCache: true }
|
822
|
|
- }, {
|
823
|
|
- path: '/stock/query',
|
824
|
|
- component: () => import('@/xt_pages/stock/stockQuery'),
|
825
|
|
- name: 'stockQuery',
|
826
|
|
- meta: { title: 'stockQuery' }
|
827
|
|
- }, {
|
828
|
|
- path: '/stock/detail',
|
829
|
|
- component: () => import('@/xt_pages/stock/stockDetailIndex'),
|
830
|
|
- name: 'stockDetail',
|
831
|
|
- meta: { title: 'stockDetail' }
|
832
|
|
- },{
|
833
|
|
- path: '/stock/in/add',
|
834
|
|
- component: () => import('@/xt_pages/stock/stockInOrderAdd'),
|
835
|
|
- name: 'stockInOrderAdd',
|
836
|
|
- hidden: true,
|
837
|
|
- is_menu: false,
|
838
|
|
- meta: { title: 'stockInOrderAdd' }
|
839
|
|
- }, {
|
840
|
|
- path: '/stock/in/detail',
|
841
|
|
- component: () => import('@/xt_pages/stock/stockInDetail'),
|
842
|
|
- name: 'stockInDetail',
|
843
|
|
- hidden: true,
|
844
|
|
- is_menu: false,
|
845
|
|
- meta: { title: 'stockInDetail' }
|
846
|
|
- }, {
|
847
|
|
- path: '/stock/return/detail',
|
848
|
|
- component: () => import('@/xt_pages/stock/salesReturnDetail'),
|
849
|
|
- name: 'salesReturnDetail',
|
850
|
|
- hidden: true,
|
851
|
|
- is_menu: false,
|
852
|
|
- meta: { title: 'salesReturnDetail' }
|
853
|
|
- }, {
|
854
|
|
- path: '/stock/return/add',
|
855
|
|
- component: () => import('@/xt_pages/stock/salesReturnOrderAdd'),
|
856
|
|
- name: 'salesReturnOrderAdd',
|
857
|
|
- hidden: true,
|
858
|
|
- is_menu: false,
|
859
|
|
- meta: { title: 'salesReturnOrderAdd' }
|
860
|
|
- }, {
|
861
|
|
- path: '/stock/out/add',
|
862
|
|
- component: () => import('@/xt_pages/stock/stockOutOrderAdd'),
|
863
|
|
- name: 'stockOutOrderAdd',
|
864
|
|
- hidden: true,
|
865
|
|
- is_menu: false,
|
866
|
|
- meta: { title: 'stockOutOrderAdd', noCache: true }
|
867
|
|
- }, {
|
868
|
|
- path: '/stock/out/detail',
|
869
|
|
- component: () => import('@/xt_pages/stock/stockOutDetail'),
|
870
|
|
- name: 'stockOutDetail',
|
871
|
|
- hidden: true,
|
872
|
|
- is_menu: false,
|
873
|
|
- meta: { title: 'stockOutDetail', noCache: true }
|
874
|
|
- }, {
|
875
|
|
- path: '/stock/cancel/add',
|
876
|
|
- component: () => import('@/xt_pages/stock/cancelStockOrderAdd'),
|
877
|
|
- name: 'cancelStockOrderAdd',
|
878
|
|
- hidden: true,
|
879
|
|
- is_menu: false,
|
880
|
|
- meta: { title: 'cancelStockOrderAdd', noCache: true }
|
881
|
|
- }, {
|
882
|
|
- path: '/stock/cancel/detail',
|
883
|
|
- component: () => import('@/xt_pages/stock/cancelStockDetail'),
|
884
|
|
- name: 'cancelStockDetail',
|
885
|
|
- hidden: true,
|
886
|
|
- is_menu: false,
|
887
|
|
- meta: { title: 'cancelStockDetail', noCache: true }
|
888
|
|
- }
|
889
|
|
-
|
890
|
|
- ]
|
891
|
|
- },
|
892
|
|
- {
|
893
|
|
- path: '/qcd',
|
894
|
|
- component: Layout,
|
895
|
|
- redirect: '/qcd/dialysistotal',
|
896
|
|
- name: 'qcd',
|
897
|
|
- alwaysShow: true,
|
898
|
|
- meta: { title: '科室质控', icon: 'table' },
|
899
|
|
- children: [
|
900
|
|
- { path: '/statistics/index', component: () => import('@/xt_pages/statistics/index'), name: 'statistics', meta: { title: 'statistics' }},
|
901
|
|
- { path: '/qcd/dialysistotal', component: () => import('@/xt_pages/qcd/dialysisTotal'), name: 'dialysistotal', meta: { title: '透析总量' }},
|
902
|
|
- { path: '/qcd/processindicators', component: () => import('@/xt_pages/qcd/processIndicators'), name: 'processIndicators', meta: { title: '过程指标' }},
|
903
|
|
- { path: '/qcd/outcomeIndicators/control', component: () => import('@/xt_pages/qcd/outcomeIndicators/control'), name: 'outcomeIndicatorsControl', meta: { title: '结果指标' }},
|
904
|
|
- { path: '/qcd/outcomeIndicators/query', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/outcomeIndicators/query'), name: 'outcomeIndicatorsQuery', meta: { title: '指标查询' }},
|
905
|
|
- { path: '/qcd/patientanalysis/total', component: () => import('@/xt_pages/qcd/patientAnalysis/total'), name: 'patientAnalysisTotal', meta: { title: '患者分析' }},
|
906
|
|
- { path: '/qcd/patientanalysis/weight',hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/weight'), name: 'patientAnalysisWeight', meta: { title: '体重分析' }},
|
907
|
|
- { path: '/qcd/patientanalysis/bloodpressure', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/bloodPressure'), name: 'patientAnalysisBloodPressure', meta: { title: '血压分析' }},
|
908
|
|
- { path: '/qcd/patientanalysis/dialysisage', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/dialysisAge'), name: 'patientAnalysisDialysisAge', meta: { title: '透析龄分析' }},
|
909
|
|
- { path: '/qcd/patientanalysis/lapseto', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/lapseto'), name: 'patientAnalysisLapseto', meta: { title: '转归分析' }},
|
910
|
|
- { path: '/qcd/patientanalysis/complication', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/complication'), name: 'patientAnalysisComplication', meta: { title: '并发症分析' }},
|
911
|
|
- { path: '/qcd/patientanalysis/infectiousdiseases', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/infectiousDiseases'), name: 'patientAnalysisInfectiousDiseases', meta: { title: '传染病分析' }},
|
912
|
|
- { path: '/qcd/pa/person/lapseto', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/lapseto'), name: 'paPersonLapseto', meta: { title: '转归' }},
|
913
|
|
- { path: '/qcd/pa/person/weight', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/weight'), name: 'paPersonWeight', meta: { title: '体重' }},
|
914
|
|
- { path: '/qcd/pa/person/bloodpressure', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/bloodPressure'), name: 'paPersonBloodPressure', meta: { title: '血压' }},
|
915
|
|
- { path: '/qcd/pa/person/indicators', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/indicators'), name: 'paPersonIndicators', meta: { title: '指标控制' }},
|
916
|
|
- { path: '/qcd/pa/person/oralmedicine', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/oralMedicine'), name: 'paPersonOralMedicine', meta: { title: '口服药' }},
|
917
|
|
- ]
|
918
|
|
- },
|
919
|
|
- {
|
920
|
|
- path: '/data/',
|
921
|
|
- component: Layout,
|
922
|
|
- redirect: 'noredirect',
|
923
|
|
- name: 'data',
|
924
|
|
- meta: { title: 'data_dictionary', icon: 'excel' },
|
925
|
|
- children: [
|
926
|
|
- { path: '/data/dictionary', component: () => import('@/xt_pages/data/index'), name: 'dictionary', meta: { title: 'field_config' }},
|
927
|
|
- { path: '/data/template', component: () => import('@/xt_pages/data/template'), name: 'template', meta: { title: 'template' }},
|
928
|
|
- { path: '/data/druguse', component: () => import('@/xt_pages/data/druguseTemplate'), name: 'druguse', meta: { title: 'druguse' }}
|
929
|
|
- ]
|
930
|
|
- },
|
931
|
|
- {
|
932
|
|
- path: '/device',
|
933
|
|
- component: Layout,
|
934
|
|
- redirect: '/device/main',
|
935
|
|
- name: 'device',
|
936
|
|
- alwaysShow: true,
|
937
|
|
- meta: { title: 'deviceManage', icon: 'shebei' },
|
938
|
|
- children: [
|
939
|
|
- { path: '/device/zones', component: () => import('@/xt_pages/device/zone_main'), name: 'deviceZoneManage', meta: { title: 'deviceZoneManage' }},
|
940
|
|
- { path: '/device/groups', component: () => import('@/xt_pages/device/group_main'), name: 'deviceGroupManage', meta: { title: 'deviceGroupManage' }},
|
941
|
|
- { path: '/device/numbers', component: () => import('@/xt_pages/device/number_main'), name: 'deviceNumberManage', meta: { title: 'deviceNumberManage' }},
|
942
|
|
- { path: '/device/main', component: () => import('@/xt_pages/device/main'), name: 'dialysisMachineManage', meta: { title: 'dialysisMachineManage' }}
|
943
|
|
- ]
|
944
|
|
- },
|
|
754
|
+ // // { path: 'advice', component: () => import('@/xt_pages/dialysis/doctorAdvice'), name: 'advice', meta: { title: 'advice' }},
|
|
755
|
+ // // { path: 'prepare', component: () => import('@/xt_pages/dialysis/dialysisPrepare'), name: 'prepare', meta: { title: 'prepare' }},
|
|
756
|
+ // { path: '/dialysis/watch', component: () => import('@/xt_pages/dialysis/bloodPresssWatch'), name: 'watch', meta: { title: 'watch' }},
|
|
757
|
+ // { path: '/dialysis/details', component: () => import('@/xt_pages/dialysis/details'), name: 'details', meta: { title: 'details' }, is_menu: false,},
|
|
758
|
+ // {
|
|
759
|
+ // path: '/dialysis/print/batch',
|
|
760
|
+ // component: () => import('@/xt_pages/dialysis/batch_print/batch_print_order'),
|
|
761
|
+ // hidden: true,
|
|
762
|
+ // is_menu: false,
|
|
763
|
+ // name: 'dialysis_batch_print',
|
|
764
|
+ // meta: { title: '批量打印', noCache: true }
|
|
765
|
+ // },
|
|
766
|
+ // { path: '/dialysis/board', component: () => import('@/xt_pages/dialysis/bulletinBoard'), name: '数据看板', meta: { title: '数据看板' }},
|
|
767
|
+ // ]
|
|
768
|
+ // },
|
|
769
|
+ // {
|
|
770
|
+ // path: '/stock/',
|
|
771
|
+ // component: Layout,
|
|
772
|
+ // redirect: 'noredirect',
|
|
773
|
+ // name: 'stockManage',
|
|
774
|
+ // meta: { title: 'stockManage', icon: 'stock' },
|
|
775
|
+ // children: [
|
|
776
|
+ // {
|
|
777
|
+ // path: '/stock/config',
|
|
778
|
+ // component: () => import('@/xt_pages/stock/index'),
|
|
779
|
+ // name: 'config',
|
|
780
|
+ // meta: { title: 'config' }
|
|
781
|
+ // },
|
|
782
|
+ // {
|
|
783
|
+ // path: '/stock/in',
|
|
784
|
+ // component: () => import('@/xt_pages/stock/stockInOrder'),
|
|
785
|
+ // name: 'stockInOrder',
|
|
786
|
+ // meta: { title: 'stockInOrder', noCache: true }
|
|
787
|
+ // }, {
|
|
788
|
+ // path: '/stock/in/other',
|
|
789
|
+ // component: () => import('@/xt_pages/stock/otherStockInOrder'),
|
|
790
|
+ // name: 'otherStockInOrder',
|
|
791
|
+ // meta: { title: 'otherStockInOrder', noCache: true }
|
|
792
|
+ // }, {
|
|
793
|
+ // path: '/stock/return',
|
|
794
|
+ // component: () => import('@/xt_pages/stock/salesReturnOrder'),
|
|
795
|
+ // name: 'salesReturnOrder',
|
|
796
|
+ // meta: { title: 'salesReturnOrder', noCache: true }
|
|
797
|
+ // }, {
|
|
798
|
+ // path: '/stock/return/other',
|
|
799
|
+ // component: () => import('@/xt_pages/stock/otherSalesReturnOrder'),
|
|
800
|
+ // name: 'otherSalesReturnOrder',
|
|
801
|
+ // meta: { title: 'otherSalesReturnOrder', noCache: true }
|
|
802
|
+ // },
|
|
803
|
+ // {
|
|
804
|
+ // path: '/stock/out',
|
|
805
|
+ // component: () => import('@/xt_pages/stock/stockOutOrder'),
|
|
806
|
+ // name: 'stockOutOrder',
|
|
807
|
+ // meta: { title: 'stockOutOrder', noCache: true }
|
|
808
|
+ // }, {
|
|
809
|
+ // path: '/stock/out/other',
|
|
810
|
+ // component: () => import('@/xt_pages/stock/otherStockOutOrder'),
|
|
811
|
+ // name: 'otherStockOutOrder',
|
|
812
|
+ // meta: { title: 'otherStockOutOrder', noCache: true }
|
|
813
|
+ // }, {
|
|
814
|
+ // path: '/stock/cancel',
|
|
815
|
+ // component: () => import('@/xt_pages/stock/cancelStockOrder'),
|
|
816
|
+ // name: 'cancelStockOrder',
|
|
817
|
+ // meta: { title: 'cancelStockOrder', noCache: true }
|
|
818
|
+ // }, {
|
|
819
|
+ // path: '/stock/cancel/other',
|
|
820
|
+ // component: () => import('@/xt_pages/stock/otherCancelStockOrder'),
|
|
821
|
+ // name: 'otherCancelStockOrder',
|
|
822
|
+ // meta: { title: 'otherCancelStockOrder', noCache: true }
|
|
823
|
+ // }, {
|
|
824
|
+ // path: '/stock/query',
|
|
825
|
+ // component: () => import('@/xt_pages/stock/stockQuery'),
|
|
826
|
+ // name: 'stockQuery',
|
|
827
|
+ // meta: { title: 'stockQuery' }
|
|
828
|
+ // }, {
|
|
829
|
+ // path: '/stock/detail',
|
|
830
|
+ // component: () => import('@/xt_pages/stock/stockDetailIndex'),
|
|
831
|
+ // name: 'stockDetail',
|
|
832
|
+ // meta: { title: 'stockDetail' }
|
|
833
|
+ // },{
|
|
834
|
+ // path: '/stock/in/add',
|
|
835
|
+ // component: () => import('@/xt_pages/stock/stockInOrderAdd'),
|
|
836
|
+ // name: 'stockInOrderAdd',
|
|
837
|
+ // hidden: true,
|
|
838
|
+ // is_menu: false,
|
|
839
|
+ // meta: { title: 'stockInOrderAdd' }
|
|
840
|
+ // }, {
|
|
841
|
+ // path: '/stock/in/detail',
|
|
842
|
+ // component: () => import('@/xt_pages/stock/stockInDetail'),
|
|
843
|
+ // name: 'stockInDetail',
|
|
844
|
+ // hidden: true,
|
|
845
|
+ // is_menu: false,
|
|
846
|
+ // meta: { title: 'stockInDetail' }
|
|
847
|
+ // }, {
|
|
848
|
+ // path: '/stock/return/detail',
|
|
849
|
+ // component: () => import('@/xt_pages/stock/salesReturnDetail'),
|
|
850
|
+ // name: 'salesReturnDetail',
|
|
851
|
+ // hidden: true,
|
|
852
|
+ // is_menu: false,
|
|
853
|
+ // meta: { title: 'salesReturnDetail' }
|
|
854
|
+ // }, {
|
|
855
|
+ // path: '/stock/return/add',
|
|
856
|
+ // component: () => import('@/xt_pages/stock/salesReturnOrderAdd'),
|
|
857
|
+ // name: 'salesReturnOrderAdd',
|
|
858
|
+ // hidden: true,
|
|
859
|
+ // is_menu: false,
|
|
860
|
+ // meta: { title: 'salesReturnOrderAdd' }
|
|
861
|
+ // }, {
|
|
862
|
+ // path: '/stock/out/add',
|
|
863
|
+ // component: () => import('@/xt_pages/stock/stockOutOrderAdd'),
|
|
864
|
+ // name: 'stockOutOrderAdd',
|
|
865
|
+ // hidden: true,
|
|
866
|
+ // is_menu: false,
|
|
867
|
+ // meta: { title: 'stockOutOrderAdd', noCache: true }
|
|
868
|
+ // }, {
|
|
869
|
+ // path: '/stock/out/detail',
|
|
870
|
+ // component: () => import('@/xt_pages/stock/stockOutDetail'),
|
|
871
|
+ // name: 'stockOutDetail',
|
|
872
|
+ // hidden: true,
|
|
873
|
+ // is_menu: false,
|
|
874
|
+ // meta: { title: 'stockOutDetail', noCache: true }
|
|
875
|
+ // }, {
|
|
876
|
+ // path: '/stock/cancel/add',
|
|
877
|
+ // component: () => import('@/xt_pages/stock/cancelStockOrderAdd'),
|
|
878
|
+ // name: 'cancelStockOrderAdd',
|
|
879
|
+ // hidden: true,
|
|
880
|
+ // is_menu: false,
|
|
881
|
+ // meta: { title: 'cancelStockOrderAdd', noCache: true }
|
|
882
|
+ // }, {
|
|
883
|
+ // path: '/stock/cancel/detail',
|
|
884
|
+ // component: () => import('@/xt_pages/stock/cancelStockDetail'),
|
|
885
|
+ // name: 'cancelStockDetail',
|
|
886
|
+ // hidden: true,
|
|
887
|
+ // is_menu: false,
|
|
888
|
+ // meta: { title: 'cancelStockDetail', noCache: true }
|
|
889
|
+ // }
|
|
890
|
+ // ]
|
|
891
|
+ // },
|
|
892
|
+ // {
|
|
893
|
+ // path: '/qcd',
|
|
894
|
+ // component: Layout,
|
|
895
|
+ // redirect: '/qcd/dialysistotal',
|
|
896
|
+ // name: 'qcd',
|
|
897
|
+ // alwaysShow: true,
|
|
898
|
+ // meta: { title: '科室质控', icon: 'table' },
|
|
899
|
+ // children: [
|
|
900
|
+ // { path: '/statistics/index', component: () => import('@/xt_pages/statistics/index'), name: 'statistics', meta: { title: 'statistics' }},
|
|
901
|
+ // { path: '/qcd/dialysistotal', component: () => import('@/xt_pages/qcd/dialysisTotal'), name: 'dialysistotal', meta: { title: '透析总量' }},
|
|
902
|
+ // { path: '/qcd/processindicators', component: () => import('@/xt_pages/qcd/processIndicators'), name: 'processIndicators', meta: { title: '过程指标' }},
|
|
903
|
+ // { path: '/qcd/outcomeIndicators/control', component: () => import('@/xt_pages/qcd/outcomeIndicators/control'), name: 'outcomeIndicatorsControl', meta: { title: '结果指标' }},
|
|
904
|
+ // { path: '/qcd/outcomeIndicators/query', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/outcomeIndicators/query'), name: 'outcomeIndicatorsQuery', meta: { title: '指标查询' }},
|
|
905
|
+ // { path: '/qcd/patientanalysis/total', component: () => import('@/xt_pages/qcd/patientAnalysis/total'), name: 'patientAnalysisTotal', meta: { title: '患者分析' }},
|
|
906
|
+ // { path: '/qcd/patientanalysis/weight',hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/weight'), name: 'patientAnalysisWeight', meta: { title: '体重分析' }},
|
|
907
|
+ // { path: '/qcd/patientanalysis/bloodpressure', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/bloodPressure'), name: 'patientAnalysisBloodPressure', meta: { title: '血压分析' }},
|
|
908
|
+ // { path: '/qcd/patientanalysis/dialysisage', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/dialysisAge'), name: 'patientAnalysisDialysisAge', meta: { title: '透析龄分析' }},
|
|
909
|
+ // { path: '/qcd/patientanalysis/lapseto', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/lapseto'), name: 'patientAnalysisLapseto', meta: { title: '转归分析' }},
|
|
910
|
+ // { path: '/qcd/patientanalysis/complication', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/complication'), name: 'patientAnalysisComplication', meta: { title: '并发症分析' }},
|
|
911
|
+ // { path: '/qcd/patientanalysis/infectiousdiseases', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/infectiousDiseases'), name: 'patientAnalysisInfectiousDiseases', meta: { title: '传染病分析' }},
|
|
912
|
+ // { path: '/qcd/pa/person/lapseto', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/lapseto'), name: 'paPersonLapseto', meta: { title: '转归' }},
|
|
913
|
+ // { path: '/qcd/pa/person/weight', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/weight'), name: 'paPersonWeight', meta: { title: '体重' }},
|
|
914
|
+ // { path: '/qcd/pa/person/bloodpressure', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/bloodPressure'), name: 'paPersonBloodPressure', meta: { title: '血压' }},
|
|
915
|
+ // { path: '/qcd/pa/person/indicators', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/indicators'), name: 'paPersonIndicators', meta: { title: '指标控制' }},
|
|
916
|
+ // { path: '/qcd/pa/person/oralmedicine', hidden: true, is_menu: false, component: () => import('@/xt_pages/qcd/patientAnalysis/person/oralMedicine'), name: 'paPersonOralMedicine', meta: { title: '口服药' }},
|
|
917
|
+ // ]
|
|
918
|
+ // },
|
|
919
|
+ // {
|
|
920
|
+ // path: '/data/',
|
|
921
|
+ // component: Layout,
|
|
922
|
+ // redirect: 'noredirect',
|
|
923
|
+ // name: 'data',
|
|
924
|
+ // meta: { title: 'data_dictionary', icon: 'excel' },
|
|
925
|
+ // children: [
|
|
926
|
+ // { path: '/data/dictionary', component: () => import('@/xt_pages/data/index'), name: 'dictionary', meta: { title: 'field_config' }},
|
|
927
|
+ // { path: '/data/template', component: () => import('@/xt_pages/data/template'), name: 'template', meta: { title: 'template' }},
|
|
928
|
+ // { path: '/data/druguse', component: () => import('@/xt_pages/data/druguseTemplate'), name: 'druguse', meta: { title: 'druguse' }}
|
|
929
|
+ // ]
|
|
930
|
+ // },
|
|
931
|
+ // {
|
|
932
|
+ // path: '/device',
|
|
933
|
+ // component: Layout,
|
|
934
|
+ // redirect: '/device/main',
|
|
935
|
+ // name: 'device',
|
|
936
|
+ // alwaysShow: true,
|
|
937
|
+ // meta: { title: 'deviceManage', icon: 'shebei' },
|
|
938
|
+ // children: [
|
|
939
|
+ // { path: '/device/zones', component: () => import('@/xt_pages/device/zone_main'), name: 'deviceZoneManage', meta: { title: 'deviceZoneManage' }},
|
|
940
|
+ // { path: '/device/groups', component: () => import('@/xt_pages/device/group_main'), name: 'deviceGroupManage', meta: { title: 'deviceGroupManage' }},
|
|
941
|
+ // { path: '/device/numbers', component: () => import('@/xt_pages/device/number_main'), name: 'deviceNumberManage', meta: { title: 'deviceNumberManage' }},
|
|
942
|
+ // { path: '/device/main', component: () => import('@/xt_pages/device/main'), name: 'dialysisMachineManage', meta: { title: 'dialysisMachineManage' }}
|
|
943
|
+ // ]
|
|
944
|
+ // },
|
945
|
945
|
// /////////////////////////////////////线在end
|
946
|
946
|
{
|
947
|
947
|
path: '/role',
|