diff --git a/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue b/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue index d2ca1d3a..2dca30d5 100644 --- a/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue +++ b/openhis-ui-vue3/src/views/maintainSystem/checkprojectSettings/index.vue @@ -872,41 +872,18 @@ onMounted(async () => { inspectionTypeDicts.value = typeResponse.data; // 从数据字典获取检查类型值 checkTypes.value = typeResponse.data.map(item => item.dictValue); + // 从数据字典获取检查类型下拉选项 + checkTypeOptions.value = typeResponse.data.map(item => ({ + value: item.dictValue, + label: item.dictLabel, + dictValue: item.dictValue, + dictLabel: item.dictLabel + })); } else { checkTypes.value = []; inspectionTypeDicts.value = []; } - // 从检查类型维护界面获取所有检查类型(用于下拉选项) - try { - const checkTypeListResponse = await getAllCheckTypes(); - if (checkTypeListResponse && checkTypeListResponse.data) { - // 处理返回的数据,提取 name 和 code/type 用于下拉选项 - const typeList = Array.isArray(checkTypeListResponse.data) - ? checkTypeListResponse.data - : (checkTypeListResponse.data.records || []); - checkTypeOptions.value = typeList.map(item => ({ - value: item.code || item.type || item.id, - label: item.name, - id: item.id, - code: item.code, - type: item.type - })); - } - } catch (e) { - console.error('获取检查类型列表失败', e); - checkTypeOptions.value = []; - } - - // 获取服务范围数据(从数据字典获取) - const scopeResponse = await getDicts('scope_of_services'); - if (scopeResponse && scopeResponse.data) { - // 保存完整的服务范围字典数据 - serviceScopeDicts.value = scopeResponse.data; - } else { - serviceScopeDicts.value = []; - } - // 获取检查类型表格数据(分页获取) await loadCheckTypeDataWithPagination();