From 8156fc2e8fa0cfc7cffac35d2f71b66bfcea0af2 Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Mon, 18 May 2026 12:24:36 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#539:=20=E5=AE=9E=E9=99=85=E6=89=A7?= =?UTF-8?q?=E8=A1=8C=E6=95=B0=E6=8D=AE=E5=BA=93SQL=E4=BF=AE=E5=A4=8D=20?= =?UTF-8?q?=E2=80=94=20=E5=B0=86menu=5Fid=3D295=E7=9A=84menu=5Ftype?= =?UTF-8?q?=E4=BB=8EC=E6=94=B9=E4=B8=BAM=E5=B9=B6=E6=B8=85=E7=A9=BAcompone?= =?UTF-8?q?nt=EF=BC=8C=E4=BD=BF=E4=BD=8F=E9=99=A2=E6=8A=A4=E5=A3=AB?= =?UTF-8?q?=E7=AB=99=E4=BE=A7=E8=BE=B9=E6=A0=8F=E5=B1=95=E5=BC=80=E5=AD=90?= =?UTF-8?q?=E8=8F=9C=E5=8D=95=EF=BC=8815=E4=B8=AA=E5=AD=90=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=EF=BC=9A=E5=85=A5=E5=87=BA=E8=BD=AC=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E3=80=81=E6=8A=A4=E7=90=86=E8=AE=B0=E5=BD=95=E3=80=81=E4=B8=89?= =?UTF-8?q?=E6=B5=8B=E5=8D=95=E7=AD=89=EF=BC=89=EF=BC=9Bmenu=5Fid=3D2062?= =?UTF-8?q?=E7=9A=84component=E5=B7=B2=E6=98=AF=E6=AD=A3=E7=A1=AE=E5=80=BC?= =?UTF-8?q?=E6=97=A0=E9=9C=80=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- BUG_539_ANALYSIS.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/BUG_539_ANALYSIS.md b/BUG_539_ANALYSIS.md index c4b1d6581..f41a80917 100644 --- a/BUG_539_ANALYSIS.md +++ b/BUG_539_ANALYSIS.md @@ -32,14 +32,15 @@ ## 修复结果 -### 已执行操作 +### 已执行操作(2026-05-18 实际执行确认) 1. `UPDATE hisdev.sys_menu SET menu_type = 'M', component = NULL, route_name = NULL WHERE menu_id = 295;` - - 将住院护士站从菜单类型改为目录类型,清空 component -2. `UPDATE hisdev.sys_menu SET component = 'inpatientNurse/medicineCollect/index' WHERE menu_id = 2062;` - - 修复住院领药菜单的 component 路径错误(`indexon/` → `index`) + - 将住院护士站从菜单类型改为目录类型,清空 component — UPDATE 1 ✅ +2. `UPDATE hisdev.sys_menu SET component = 'inpatientNurse/medicineCollect/index' WHERE menu_id = 2062 AND component LIKE '%indexon%';` + - 修复住院领药菜单的 component 路径错误 — UPDATE 0(已是正确值)✅ ### 修复后验证 -- 菜单 295:menu_type=M, component=null → 侧边栏展开为子菜单树 -- 菜单 296(门户):component=`inpatientNurse/inpatientNurseStation/index` → 带10个标签的主页面 -- 菜单 297-2062:各子菜单 component 均指向正确的前端组件 -- 修复结果:✅ 成功,2行数据库改动 +- 菜单 295:menu_type=M, component=null → 侧边栏展开为子菜单树 ✅ +- 菜单 296(门户):component=`inpatientNurse/inpatientNurseStation/index` → 带10个标签的主页面 ✅ +- 菜单 297-2062:各子菜单 component 均指向正确的前端组件 ✅ +- 15个子菜单全部正常 ✅ +- 修复结果:✅ 成功,1行数据库改动(menu_id=295 C→M + component=NULL)