diff --git a/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue b/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue index f58c0a90e..615bb5698 100755 --- a/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue +++ b/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue @@ -296,6 +296,7 @@ +
取消 应用 @@ -798,6 +799,7 @@ function resetData() { // 划价组套相关功能 function openGroupSetDialog() { + console.log('openGroupSetDialog called'); groupSetDialogVisible.value = true; groupSetSearchText.value = ''; selectedGroupSet.value = null; @@ -834,8 +836,9 @@ function loadGroupSets() { groupSetList.value = rawList; } }) - .catch(() => { - console.warn('组套列表加载失败(可能无权限)'); + .catch((err) => { + console.warn('组套列表加载失败(可能无权限):', err); + ElMessage.warning('组套列表加载失败,当前暂无可用组套'); groupSetList.value = []; }) .finally(() => {