From 6ed41eb513bcba929f570fc0a1b160e1f94f39ea Mon Sep 17 00:00:00 2001 From: Ranyunqiao <2499115710@qq.com> Date: Thu, 19 Mar 2026 10:11:02 +0800 Subject: [PATCH] =?UTF-8?q?240=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=E9=83=A8?= =?UTF-8?q?=E4=BD=8D=EF=BC=9A=E6=9C=8D=E5=8A=A1=E8=8C=83=E5=9B=B4=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E4=B8=8B=E6=8B=89=E9=80=89=E9=A1=B9=E5=8F=96=E5=80=BC?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../checkprojectSettings/index.vue | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue b/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue index a24407fb..af1350ca 100644 --- a/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue +++ b/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue @@ -534,19 +534,19 @@ {{ item.number || '999999' }} - + @@ -667,6 +667,8 @@ const checkTypeOptions = ref([]); const inspectionTypeDicts = ref([]); // 完整的服务范围字典数据 const serviceScopeDicts = ref([]); + // 服务范围下拉选项 + const serviceScopeOptions = ref([]); const checkMethods = ref([]); // 根据字典值获取检查类型标签 @@ -926,6 +928,11 @@ onMounted(async () => { inspectionTypeDicts.value = []; } + // 获取服务范围字典 + const scopeRes = await getDicts('scope_of_services'); + serviceScopeDicts.value = scopeRes?.data || []; + + // 从检查类型维护页面获取检查类型数据,用于检查方法和检查部位的下拉选项 await loadCheckTypeOptionsForMethodPart();