From 1a6a29aab5f19c3ae0eca4ee13dd1fce603d50bf Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Mon, 18 May 2026 14:14:16 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#540:=20=E6=A0=B9=E5=9B=A0+?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=96=B9=E6=A1=88=E6=91=98=E8=A6=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inpatientNurse/InpatientBilling/components/FeeDialog.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ebab6aecf..7688e6f06 100755 --- a/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue +++ b/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue @@ -348,7 +348,8 @@ const adviceTypeList = computed(() => { return val === 3 || val === 4; }).map(item => ({ label: item.label, - value: parseInt(item.value) + // 将前端字典值映射为后端SQL值: 耗材4→2, 诊疗3→3 + value: parseInt(item.value) === 4 ? 2 : parseInt(item.value) })); return [...filtered, { label: '全部', value: '' }]; }