From 9b5b861653e2c0b8414149211ac0955ffe294733 Mon Sep 17 00:00:00 2001 From: wangjian963 <15215920+aprilry@user.noreply.gitee.com> Date: Tue, 23 Jun 2026 17:38:36 +0800 Subject: [PATCH] =?UTF-8?q?669=20[=E9=97=A8=E8=AF=8A=E5=8C=BB=E7=94=9F?= =?UTF-8?q?=E7=AB=99-=E4=B8=AD=E5=8C=BB=E5=A4=84=E6=96=B9]=20=E4=B8=AD?= =?UTF-8?q?=E5=8C=BB=E5=A4=84=E6=96=B9=E5=A4=B4=E4=BF=A1=E6=81=AF=EF=BC=88?= =?UTF-8?q?=E8=B4=B9=E7=94=A8=E6=80=A7=E8=B4=A8=E3=80=81=E9=A2=91=E6=AC=A1?= =?UTF-8?q?=E3=80=81=E5=A4=A9=E6=95=B0=E3=80=81=E4=BB=98=E6=95=B0=E7=AD=89?= =?UTF-8?q?=EF=BC=89=E5=9C=A8=E4=BF=9D=E5=AD=98=E5=B9=B6=E9=87=8D=E6=96=B0?= =?UTF-8?q?=E8=BF=9B=E5=85=A5=E5=90=8E=E5=9B=9E=E6=98=BE=E4=B8=BA=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/doctorstation/components/tcm/tcmAdvice.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/healthlink-his-ui/src/views/doctorstation/components/tcm/tcmAdvice.vue b/healthlink-his-ui/src/views/doctorstation/components/tcm/tcmAdvice.vue index 62ff30454..a381ab6d8 100755 --- a/healthlink-his-ui/src/views/doctorstation/components/tcm/tcmAdvice.vue +++ b/healthlink-his-ui/src/views/doctorstation/components/tcm/tcmAdvice.vue @@ -713,7 +713,7 @@ async function getListInfo(addNewRow) { prescription.chineseHerbsDoseQuantity = firstItem.chineseHerbsDoseQuantity; } if (firstItem.sufferingFlag !== undefined && firstItem.sufferingFlag !== null) { - prescription.sufferingFlag = firstItem.sufferingFlag; + prescription.sufferingFlag = String(firstItem.sufferingFlag); } if (firstItem.dosageInstruction !== undefined && firstItem.dosageInstruction !== null) { prescription.dosageInstruction = firstItem.dosageInstruction; @@ -1255,7 +1255,10 @@ function handleSaveBatch(pIndex) { proxy.$modal.msgWarning('请输入付数'); return; } - saveTcmAdvice({ adviceSaveList: saveList }).then((res) => { + saveTcmAdvice({ + adviceSaveList: saveList, + sufferingFlag: Number(prescription.sufferingFlag), + }).then((res) => { if (res.code === 200) { proxy.$modal.msgSuccess('保存成功'); getListInfo(true);