From b552a68b078a8fa04328a25b4eaa852ab15be315 Mon Sep 17 00:00:00 2001 From: LiJianZhao Date: Tue, 13 May 2025 15:31:16 +0800 Subject: [PATCH] dev --- src/components/charge/PatientCard.vue | 10 +++++----- src/components/outpatient/MedicalQueue.vue | 2 +- src/components/registration/Edit.vue | 3 ++- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/components/charge/PatientCard.vue b/src/components/charge/PatientCard.vue index c7de250..3a0b74c 100644 --- a/src/components/charge/PatientCard.vue +++ b/src/components/charge/PatientCard.vue @@ -14,20 +14,20 @@ {{ seeDockerInfo?.patientInfo?.age||0}}岁
- {{ seeDockerInfo?.patientInfo?.phone }} + {{ seeDockerInfo.patientInfo?.phone }} 就诊次数:{{ - seeDockerInfo?.seeDoctorCount || 0 + seeDockerInfo.seeDoctorCount || 0 }}次
挂号医生: {{ seeDockerInfo?.dockerName }}-{{ seeDockerInfo?.sectionName }} + class="detail-doctor">{{ seeDockerInfo.dockerName }}-{{ seeDockerInfo?.sectionName }}
-
费用类别: {{seeDockerInfo?.feeTypeName||'-'}}
-
医保卡剩余金额: {{ seeDockerInfo?.socialBalance }}元
+
费用类别: {{seeDockerInfo.registerType==2?'医保':'自费'}}
+
医保卡剩余金额: {{ seeDockerInfo.patientInfo.socialBalance?seeDockerInfo.patientInfo.socialBalance+"元":"-" }}
上次就诊时间: {{ formatDate(seeDockerInfo?.lastSeeDoctorTime)||'-' diff --git a/src/components/outpatient/MedicalQueue.vue b/src/components/outpatient/MedicalQueue.vue index 5401573..c8c20f6 100644 --- a/src/components/outpatient/MedicalQueue.vue +++ b/src/components/outpatient/MedicalQueue.vue @@ -23,7 +23,7 @@
    diff --git a/src/components/registration/Edit.vue b/src/components/registration/Edit.vue index 27836f8..629267c 100644 --- a/src/components/registration/Edit.vue +++ b/src/components/registration/Edit.vue @@ -246,7 +246,8 @@ const save = () => { let data = { ...edit_data.value, psnNo: socialCard.value?.data?.baseinfo.psn_no, - insutype: socialCard.value?.data?.insuinfo[0].insutype + insutype: socialCard.value?.data?.insuinfo[0].insutype, + insuBalance : socialCard.value?.data?.insuinfo[0].balc, } form.value.validate((v: any) => {