From fb9f85e9676fa6314b979cb4099c36b194d867f7 Mon Sep 17 00:00:00 2001 From: chenqi Date: Thu, 8 Jan 2026 14:52:22 +0800 Subject: [PATCH] =?UTF-8?q?chore(router):=20=E6=B7=BB=E5=8A=A0=E6=82=A3?= =?UTF-8?q?=E8=80=85=E6=A1=A3=E6=A1=88=E7=AE=A1=E7=90=86=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加患者档案管理路由配置代码 - 注释掉租户用户设置路由部分代码 - 新增patientmgr路由项配置 - 配置路由组件和元信息 - 设置路由隐藏属性 - 完善路由路径和名称定义 --- openhis-ui-vue3/src/router/index.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/openhis-ui-vue3/src/router/index.js b/openhis-ui-vue3/src/router/index.js index 4bbfba04..806091ac 100644 --- a/openhis-ui-vue3/src/router/index.js +++ b/openhis-ui-vue3/src/router/index.js @@ -188,6 +188,19 @@ export const dynamicRoutes = [ // ] // }, // 租户用户设置路由 + //{ + // path: '/patient', + // component: Layout, + // hidden: true, + // children: [ + // { + // path: 'patientmgr', + // component: () => import('@/views/patientmanagement/patientmanagement/index.vue'), + // name: 'Patientmgr', + // meta: { title: '患者档案管理', icon: 'user' } + // } + // ] + // }, { path: '/system/tenant-user', component: Layout,