|
|
@ -83,7 +83,7 @@ export const constantRoutes = [ |
|
|
|
path: "/patientIndex", |
|
|
|
component: () => import("@/views/patientFile/index"), |
|
|
|
name: "patientIndex", |
|
|
|
meta: { title: "患者档案", icon: "dashboard", }, |
|
|
|
meta: { title: "患者档案", icon: "dashboard" }, |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
@ -96,13 +96,13 @@ export const constantRoutes = [ |
|
|
|
path: "/medicalIndex", |
|
|
|
component: () => import("@/views/medicalFile/index"), |
|
|
|
name: "medicalIndex", |
|
|
|
meta: { title: "诊疗档案", icon: "dashboard", }, |
|
|
|
meta: { title: "诊疗档案", icon: "dashboard" }, |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: "/followFile", |
|
|
|
meta: { title: "随访档案", icon: "dashboard", }, |
|
|
|
meta: { title: "随访档案", icon: "dashboard" }, |
|
|
|
component: Layout, |
|
|
|
redirect: "followFile", |
|
|
|
children: [ |
|
|
@ -110,33 +110,32 @@ export const constantRoutes = [ |
|
|
|
path: "/followIndex", |
|
|
|
component: () => import("@/views/followFile/index"), |
|
|
|
name: "followIndex", |
|
|
|
meta: { title: "随访队列", icon: "dashboard", }, |
|
|
|
meta: { title: "随访队列", icon: "dashboard" }, |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: "/followSubjects", |
|
|
|
component: () => import("@/views/followFile/subjects"), |
|
|
|
name: "followSubjects", |
|
|
|
meta: { title: "随访对象", icon: "dashboard", }, |
|
|
|
meta: { title: "随访对象", icon: "dashboard" }, |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: "/followWork", |
|
|
|
component: () => import("@/views/followFile/work"), |
|
|
|
name: "followWork", |
|
|
|
meta: { title: "随访工单", icon: "dashboard", }, |
|
|
|
meta: { title: "随访工单", icon: "dashboard" }, |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: "/user", |
|
|
|
component: Layout, |
|
|
|
hidden: true, |
|
|
|
redirect: "noredirect", |
|
|
|
children: [ |
|
|
|
{ |
|
|
|
path: "profile", |
|
|
|
component: () => import("@/views/system/user/profile/index"), |
|
|
|
name: "Profile", |
|
|
|
meta: { title: "个人中心", icon: "user" }, |
|
|
|
meta: { title: "我的", icon: "user" }, |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|