From 7b912ee96c99d27843dcd343579de1778c5cea55 Mon Sep 17 00:00:00 2001 From: guanyu Date: Wed, 17 Jun 2026 14:31:26 +0800 Subject: [PATCH] =?UTF-8?q?fix(#784):=20guanyu=20(=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=90=88=E5=85=A5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../medicalOrderProofread/components/api.js | 22 +++++++++++++++++++ .../components/prescriptionList.vue | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/api.js b/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/api.js index a5398f030..0a03e6c52 100755 --- a/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/api.js +++ b/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/api.js @@ -53,4 +53,26 @@ export function cancel(data) { method: 'put', data: data }) +} + +/** + * 医嘱执行 + */ +export function adviceExecute(data) { + return request({ + url: '/nurse-station/advice-process/advice-execute', + method: 'post', + data: data + }) +} + +/** + * 医嘱不执行 + */ +export function adviceNoExecute(data) { + return request({ + url: '/nurse-station/advice-process/advice-void', + method: 'put', + data: data + }) } \ No newline at end of file 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 ed02924fa..9637ae8b2 100755 --- a/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/prescriptionList.vue +++ b/healthlink-his-ui/src/views/inpatientNurse/medicalOrderProofread/components/prescriptionList.vue @@ -373,7 +373,7 @@