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..cc86b9fe6 100755 --- a/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue +++ b/openhis-ui-vue3/src/views/inpatientNurse/InpatientBilling/components/FeeDialog.vue @@ -354,7 +354,7 @@ const adviceTypeList = computed(() => { } // 默认值 return [ - { label: '耗材', value: 4 }, + { label: '耗材', value: 2 }, { label: '诊疗', value: 3 }, { label: '全部', value: '' }, ]; @@ -555,7 +555,7 @@ function loadDepartmentOptions() { function getAdviceBaseInfos() { adviceLoading.value = true; queryParams.value.searchKey = searchText.value; - queryParams.value.adviceType = adviceType.value; + queryParams.value.adviceTypes = adviceType.value; queryParams.value.organizationId = orgId.value; queryParams.value.pricingFlag = 1; // 划价标记 getAdviceBaseInfo(queryParams.value)