diff --git a/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/OrderForm.vue b/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/OrderForm.vue index 87e0fbf57..13f60224f 100755 --- a/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/OrderForm.vue +++ b/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/OrderForm.vue @@ -71,7 +71,17 @@ /> 诊断:{{ config.diagnosisName }} - 皮试:{{ row.skinTestFlag_enumText }} + + 皮试: + + + + + 注射药品:{{ row.injectFlag_enumText }} 总金额:{{ row.totalPrice ? Number(row.totalPrice).toFixed(2) + ' 元' : '0.00 元' }} diff --git a/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/index.vue b/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/index.vue index f061d665f..729805fc8 100755 --- a/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/index.vue +++ b/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/index.vue @@ -332,14 +332,16 @@ {{ scope.row.skinTestFlag_enumText || '-' }} - - 是 - + + + @@ -1181,12 +1183,22 @@ function selectAdviceBase(key, row) { // 用户点击"是",设置皮试标志为"是" prescriptionList.value[rowIndex.value].skinTestFlag = 1; prescriptionList.value[rowIndex.value].skinTestFlag_enumText = '是'; + expandOrder.value = [currentUniqueKey]; + const expandRow = filterPrescriptionList.value.find(item => item.uniqueKey === currentUniqueKey); + if (expandRow && prescriptionRef.value?.setRowExpand) { + prescriptionRef.value.setRowExpand([expandRow], true); + } expandOrderAndFocus(currentUniqueKey, row); }) .catch((action) => { // 用户点击"否",设置皮试标志为"否" prescriptionList.value[rowIndex.value].skinTestFlag = 0; prescriptionList.value[rowIndex.value].skinTestFlag_enumText = '否'; + expandOrder.value = [currentUniqueKey]; + const expandRow = filterPrescriptionList.value.find(item => item.uniqueKey === currentUniqueKey); + if (expandRow && prescriptionRef.value?.setRowExpand) { + prescriptionRef.value.setRowExpand([expandRow], true); + } expandOrderAndFocus(currentUniqueKey, row); }); } else {