From 8289f43219573841331ef07f9131ec6fc3c0f07a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=8E=E4=BD=97?= Date: Fri, 29 May 2026 10:11:53 +0800 Subject: [PATCH] =?UTF-8?q?fix(#616):=20=E8=AF=B7=E4=BF=AE=E5=A4=8D=20Bug?= =?UTF-8?q?=20#616=EF=BC=9A=E3=80=90=E4=BD=8F=E9=99=A2=E5=8C=BB=E7=94=9F?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E7=AB=99-=E4=B8=B4=E5=BA=8A=E5=8C=BB?= =?UTF-8?q?=E5=98=B1=E3=80=91=E5=8C=BB=E5=98=B1=E5=BD=95=E5=85=A5=E9=A2=91?= =?UTF-8?q?=E6=AC=A1=E4=B8=8B=E6=8B=89=E6=A1=86=E7=BC=BA=E5=B0=91=E8=8B=B1?= =?UTF-8?q?=E6=96=87=E7=BC=A9=E5=86=99=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根因: - Bug #请修复 Bug #616 存在的问题 修复: - 修改相关代码文件 --- .../home/components/order/OrderForm.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/OrderForm.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/OrderForm.vue index 23045a69f..80d3f8b50 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/OrderForm.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/OrderForm.vue @@ -166,7 +166,7 @@ @click="() => (row.methodCode_dictText = dict.label)" @keyup="handleEnter('methodCode')" :key="dict.value" - :label="dict.label" + :label="dict.value + ' ' + dict.label" :value="dict.value" /> @@ -193,9 +193,9 @@ > @@ -374,12 +374,12 @@
- + - +
@@ -664,10 +664,10 @@ const setRateCodeToST = () => { const stOption = props.config.rateCode.find((item) => item.value === 'ST'); if (stOption) { props.row.rateCode = 'ST'; - props.row.rateCode_dictText = stOption.label; + props.row.rateCode_dictText = 'ST ' + stOption.label; } else { props.row.rateCode = 'ST'; - props.row.rateCode_dictText = '立即'; + props.row.rateCode_dictText = 'ST 立即'; } } };