| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- let menus = [{
- index: '0',
- name: '患者信息',
- child: [{
- id: 'patients1',
- name: '今日病人列表',
- path: '/index/todaypatients'
- }, {
- id: 'patients2',
- name: '患者库列表',
- path: '/index/patienslist'
- }]
- }, {
- index: '1',
- name: '诊疗',
- child: [{
- id: 'diagnosis1',
- name: '中医电子病历',
- path: '/index/emr'
- }, {
- id: 'diagnosis2',
- name: '诊断页',
- path: '/index/diagnosis'
- }, {
- id: 'diagnosis3',
- name: '智能辩证',
- path: '/index/dialectical'
- }, {
- id: 'diagnosis4',
- name: '智能开方',
- path: '/index/prescribing'
- }, {
- id: 'diagnosis5',
- name: '体质辨识',
- path: '/index/physical'
- }]
- }, {
- index: '2',
- name: '知识学习',
- child: [{
- id: 'knowledge1',
- name: '名医医案',
- path: '/index/doctorcase'
- }, {
- id: 'knowledge2',
- name: '中药查询',
- path: '/index/tcm'
- }, {
- id: 'knowledge3',
- name: '方剂查询',
- path: '/index/prescription'
- }, {
- id: 'knowledge4',
- name: '经络穴位查询',
- path: '/index/xuewei'
- }, {
- id: 'knowledge5',
- name: '疾病查询',
- path: '/index/disease'
- }]
- },
- // {
- // index: '3',
- // name: '数据分析',
- // child: [{
- // id: 'patients1',
- // name: '今日病人列表'
- // }, {
- // id: 'patients2',
- // name: '患者库列表'
- // }]
- // },
- {
- index: '3',
- name: '业务管理',
- child: [{
- id: 'business1',
- name: '处方审核',
- path: '/index/recipeaudit'
- }, {
- id: 'business2',
- name: '处方列表',
- path: '/index/recipe'
- },
- // {
- // id: 'business3',
- // name: '病历列表',
- // path: '/index/medicalHistory'
- // },
- {
- id: 'business4',
- name: '药品目录管理',
- path: '/index/druglist'
- }, {
- id: 'business5',
- name: '药房管理',
- path: '/index/pharmacy'
- }, {
- id: 'business6',
- name: '协定方',
- path: '/index/accord'
- }, {
- id: 'business7',
- name: '我的患者',
- path: '/index/mypatiens'
- }
- ]
- }, {
- index: '4',
- name: '系统管理',
- child: [{
- id: 'system1',
- name: '医共体管理',
- path: '/index/doctorbody'
- }, {
- id: 'system2',
- name: '医疗机构管理',
- path: '/index/medInstitutions'
- }, {
- id: 'system3',
- name: '科室管理',
- path: '/index/department'
- }, {
- id: 'system4',
- name: '用户管理',
- path: '/index/userSytem'
- }, {
- id: 'system5',
- name: '角色管理',
- path: '/index/role'
- }, {
- id: 'system6',
- name: '公共代码管理',
- path: '/index/code'
- }, {
- id:'system9',
- path: '/index/insurance',
- name: '医保规则',
-
- },{
- id: 'system7',
- name: '参数管理',
- path: '/index/parameter'
- }, {
- id: 'system8',
- name: '帮助',
- path: '/index/help'
- }]
- },
- ]
- export {
- menus
- }
|