From 15b4339c9062bd6a10bc3b9c65b1322926084c48 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 16 May 2026 16:05:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/src/views/consumer/prescription/order_list.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/admin/src/views/consumer/prescription/order_list.vue b/admin/src/views/consumer/prescription/order_list.vue index 59265017..ba1556f1 100644 --- a/admin/src/views/consumer/prescription/order_list.vue +++ b/admin/src/views/consumer/prescription/order_list.vue @@ -2346,7 +2346,7 @@

药房备注:{{ rxPharmacyRemarkText }}

-

+

出丸:{{ rxOutPelletText }}

@@ -5193,6 +5193,8 @@ const rxTypeText = computed(() => { const v = prescriptionViewData.value as any if (!v) return '—' const t = v.prescription_type || '浓缩水丸' + /** 饮片不匹配「丸|散|膏|片」,避免误显示「浓缩丸-饮片」;类型字段直接展示饮片 */ + if (t === '饮片') return '饮片' return /丸|散|膏|片/.test(t) ? `浓缩丸-${t}` : t })