From 0c70b224f9cbdc02cb578bbda6fbda24655e772f Mon Sep 17 00:00:00 2001 From: Ranyunqiao <2499115710@qq.com> Date: Mon, 16 Mar 2026 11:49:57 +0800 Subject: [PATCH] =?UTF-8?q?185=20=E6=A3=80=E6=9F=A5=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE-=E3=80=8B=E6=A3=80=E6=9F=A5=E6=96=B9?= =?UTF-8?q?=E6=B3=95=EF=BC=9A=E3=80=90=E7=BC=96=E8=BE=91=E3=80=91=E6=A3=80?= =?UTF-8?q?=E6=9F=A5=E7=B1=BB=E5=9E=8B=E5=B7=B2=E9=80=89=E4=B8=AD=E2=80=9C?= =?UTF-8?q?=E5=BF=83=E7=94=B5=E5=9B=BE=E2=80=9D=E3=80=90=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E3=80=91=E6=8A=A5=E9=94=99=E2=80=9C=E6=A3=80=E6=9F=A5=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E4=B8=8D=E8=83=BD=E4=B8=BA=E7=A9=BA=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 186 检查项目设置-》检查部位:曝光次数和费用套餐的值错位了 --- .../impl/CheckMethodAppServiceImpl.java | 6 ++-- .../checkprojectSettings/index.vue | 36 +++++++++++++++---- 2 files changed, 34 insertions(+), 8 deletions(-) diff --git a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/check/appservice/impl/CheckMethodAppServiceImpl.java b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/check/appservice/impl/CheckMethodAppServiceImpl.java index beb240f5..e315c582 100644 --- a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/check/appservice/impl/CheckMethodAppServiceImpl.java +++ b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/check/appservice/impl/CheckMethodAppServiceImpl.java @@ -59,8 +59,10 @@ public class CheckMethodAppServiceImpl implements ICheckMethodAppService { return R.fail("检查方法的检查类型不能为空!"); } //2.保存 - boolean save = checkMethodService.save(checkMethod); - return R.ok(save); + checkMethodService.save(checkMethod); + java.util.Map result = new java.util.HashMap<>(); + result.put("id", checkMethod.getId()); + return R.ok(result); } @Override diff --git a/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue b/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue index 2dca30d5..154526f1 100644 --- a/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue +++ b/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue @@ -486,6 +486,14 @@ {{ getCheckTypeLabel(item.checkType) || '无' }} + + + +