From 41d05a16296a583005edbde18c2a5467fe1163f1 Mon Sep 17 00:00:00 2001
From: Ranyunqiao <2499115710@qq.com>
Date: Tue, 16 Jun 2026 11:55:41 +0800
Subject: [PATCH] fix(ui): use dict text from frontend for accurate display of
frequency, usage, amount, dose and ordering doctor
---
.../components/prescriptionList.vue | 36 +++++++++++++++----
1 file changed, 30 insertions(+), 6 deletions(-)
diff --git a/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/prescriptionList.vue b/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/prescriptionList.vue
index 1ecf87660..1e2e553eb 100755
--- a/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/prescriptionList.vue
+++ b/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/prescriptionList.vue
@@ -235,19 +235,39 @@
field="singleDose"
width="100"
align="center"
- />
+ >
+
+ {{ scope.row.singleDose ? scope.row.singleDose + ' ' + (scope.row.doseUnitCode_dictText || '') : '' }}
+
+
+ >
+
+ {{ scope.row.totalAmount }} {{ scope.row.unitCode_dictText || '' }}
+
+
+ >
+
+ {{
+ [
+ scope.row.rateCode_dictText,
+ scope.row.dispensePerDuration ? scope.row.dispensePerDuration + '天' : '',
+ scope.row.methodCode_dictText,
+ ]
+ .filter(Boolean)
+ .join(' ')
+ }}
+
+
+ >
+
+ {{ scope.row.requesterId_dictText || scope.row.orderingDoctor || '-' }}
+
+