1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| const meuns=[
| {text:'透析处方',path:'/scheme',roles:['医生','护士']},
| {text:'透前评估',path:'/pingguBefore',roles:['护士']},
| {text:'双人核对',path:'/douleCheck',roles:['护士']},
| {text:'监测记录',path:'/monitorData',roles:['护士']},
| {text:'耗材出库',path:'/checkOut',roles:['护士']},
| {text:'医嘱信息',path:'/drugOrder',roles:['医生','护士']},
| {text:'透后评估',path:'/bodyStateAfter',roles:['护士']},
| {text:'治疗小结',path:'/zlxj',roles:['护士']},
| {text:'患者信息',path:'/patientInfo',roles:['医生','护士']},
| {text:'病程记录',path:'/progressNote',roles:['医生']},
| {text:'血管通路',path:'/vascularAccess',roles:['医生']},
| {text:'文书管理',path:'/wenshuguanli',roles:['医生']},
| {text:'检验检查',path:'/inspection',roles:['医生']}
| ]
| export default meuns
|
|