From 515f03a5cd50304eabd569137c18c18593166e0e Mon Sep 17 00:00:00 2001 From: qk123 <18211963828@163.com> Date: Wed, 17 Dec 2025 17:23:31 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=B8=8A=E5=AF=BC=E8=88=AA?= =?UTF-8?q?=E6=A0=8F=E6=90=9C=E7=B4=A2=E6=A0=8F=E6=98=BE=E7=A4=BA=E4=B8=8D?= =?UTF-8?q?=E5=85=A8bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../layout/components/Sidebar/SidebarItem.vue | 8 - .../src/layout/components/Sidebar/index.vue | 53 +- openhis-ui-vue3/src/router/index.js | 611 ++++++----- .../{ => deptManage}/doctorschedule/index.vue | 6 +- .../appoinmentmanage/deptManage/index.vue | 985 ++++++++++++++++++ .../src/views/appoinmentmanage/index.vue | 397 ------- 6 files changed, 1317 insertions(+), 743 deletions(-) rename openhis-ui-vue3/src/views/appoinmentmanage/{ => deptManage}/doctorschedule/index.vue (99%) create mode 100644 openhis-ui-vue3/src/views/appoinmentmanage/deptManage/index.vue delete mode 100644 openhis-ui-vue3/src/views/appoinmentmanage/index.vue diff --git a/openhis-ui-vue3/src/layout/components/Sidebar/SidebarItem.vue b/openhis-ui-vue3/src/layout/components/Sidebar/SidebarItem.vue index d3b7bf1b..0236581e 100644 --- a/openhis-ui-vue3/src/layout/components/Sidebar/SidebarItem.vue +++ b/openhis-ui-vue3/src/layout/components/Sidebar/SidebarItem.vue @@ -85,14 +85,6 @@ function resolvePath(routePath, routeQuery) { if (isExternal(props.basePath)) { return props.basePath } - // 特殊处理门诊医生站路径,确保路径正确 - if (routePath === '/doctorstation' || routePath === 'doctorstation') { - if (routeQuery) { - let query = JSON.parse(routeQuery); - return { path: '/doctorstation', query: query } - } - return '/doctorstation' - } if (routeQuery) { let query = JSON.parse(routeQuery); return { path: getNormalPath(props.basePath + '/' + routePath), query: query } diff --git a/openhis-ui-vue3/src/layout/components/Sidebar/index.vue b/openhis-ui-vue3/src/layout/components/Sidebar/index.vue index d29294e0..4de5e776 100644 --- a/openhis-ui-vue3/src/layout/components/Sidebar/index.vue +++ b/openhis-ui-vue3/src/layout/components/Sidebar/index.vue @@ -1,13 +1,13 @@