Fix Bug #507: [住院护士站-住院记账-补费] 项目单位未获取、执行科室显示内码且缺乏默认/模糊搜索逻辑
1. FeeDialog.vue - getUnitCodeOptions 修复:当 unitCode/minUnitCode 为 null 但对应字典文本存在时,使用文本作为选项值兜底,确保单位下拉框不显示为空 2. newfeeDetailQuery.vue - getLocationInfo 修复:从单一 records[0].children 解析改为支持树形/扁平/数组多种响应结构,并添加 catch 兜底置空数组 3. newfeeDetailQuery.vue - selectOrg 修复:查找失败时返回 '-' 而非显示原始 orgId 内码,空值同样返回 '-' **后端开发重点**:优先搜索 Java/Spring 后端代码。 关键词:Controller, Service, Mapper, API, 接口, 数据查询 搜索目录:openhis-server-new/src/, his-repo/src/
This commit is contained in:
@@ -463,20 +463,45 @@ function watchPatientSelection() {
|
||||
}, 300);
|
||||
}
|
||||
|
||||
/** 查询科室 */
|
||||
/** 查询科室(支持树形/扁平多种响应结构) */
|
||||
const getLocationInfo = () => {
|
||||
getOrgList().then((res) => {
|
||||
orgOptions.value = res.data?.records[0]?.children;
|
||||
if (!res.data) {
|
||||
orgOptions.value = [];
|
||||
return;
|
||||
}
|
||||
// 尝试从树形结构取:records[0].children
|
||||
if (res.data.records && res.data.records.length > 0) {
|
||||
if (res.data.records[0].children && res.data.records[0].children.length > 0) {
|
||||
orgOptions.value = res.data.records[0].children;
|
||||
return;
|
||||
}
|
||||
// 如果 records[0] 有 id 和 name(非树根节点),直接用所有 records
|
||||
if (res.data.records[0].id) {
|
||||
orgOptions.value = res.data.records;
|
||||
return;
|
||||
}
|
||||
}
|
||||
// 兜底:如果 data 本身是数组
|
||||
if (Array.isArray(res.data)) {
|
||||
orgOptions.value = res.data;
|
||||
return;
|
||||
}
|
||||
orgOptions.value = [];
|
||||
}).catch(() => {
|
||||
console.warn('科室列表加载失败(可能无权限)');
|
||||
orgOptions.value = [];
|
||||
});
|
||||
};
|
||||
getLocationInfo();
|
||||
|
||||
// 映射
|
||||
// 映射(查找失败时返回 '-' 而非显示内码)
|
||||
const selectOrg = (itemid) => {
|
||||
if (!itemid) return '-';
|
||||
const item = orgOptions.value.find((item) => {
|
||||
return item.id == itemid;
|
||||
});
|
||||
return item?.name;
|
||||
return item?.name || '-';
|
||||
};
|
||||
// 重置
|
||||
const onReset = () => {
|
||||
|
||||
Reference in New Issue
Block a user