292 检验项目设置-》套餐设置:检验套餐明细选择项目后,服务费字段=金额字段的值/10
293 检验项目设置-》套餐设置:lis分组字段下拉选项未进行取值 296 检验项目设置-》套餐管理:点击行【编辑】套餐设置界面点击【更新】报错 297 检验项目设置-》套餐管理:点击行【删除】按钮报错提示“删除失败”
This commit is contained in:
@@ -482,6 +482,8 @@ const organizationOptions = ref([])
|
||||
const diagnosisTreatmentList = ref([])
|
||||
// 过滤后的诊疗项目列表(用于搜索)
|
||||
const filteredDiagnosisList = ref([])
|
||||
// lis分组列表
|
||||
const lisGroupOptions = ref([])
|
||||
// 加载状态
|
||||
const loading = ref(false)
|
||||
|
||||
@@ -738,11 +740,27 @@ onMounted(async () => {
|
||||
// 加载卫生机构列表(只获取启用的租户)
|
||||
await loadOrganizationList()
|
||||
|
||||
// 加载lis分组列表
|
||||
await loadLisGroupList()
|
||||
|
||||
} catch (error) {
|
||||
console.error('✗ 初始化数据失败:', error)
|
||||
}
|
||||
})
|
||||
|
||||
// 加载lis分组列表
|
||||
async function loadLisGroupList() {
|
||||
try {
|
||||
const response = await listLisGroup({ pageNum: 1, pageSize: 100 })
|
||||
if (response && response.code === 200 && response.data) {
|
||||
const items = response.data.records || response.data.rows || (Array.isArray(response.data) ? response.data : [])
|
||||
lisGroupOptions.value = items
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('✗ 获取lis分组列表失败:', error)
|
||||
}
|
||||
}
|
||||
|
||||
// 加载卫生机构列表(从租户列表获取,只获取启用的)
|
||||
async function loadOrganizationList() {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user