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' }}
-
+ |
-
+
- {{ getCheckTypeLabelForMethodPart(item.checkType) || '无' }}
+ {{ getServiceScopeLabel(item.serviceScope) || '无' }}
|
@@ -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();
|