From d085d0504041e29e82b51a6ade1a183149fc9ffa Mon Sep 17 00:00:00 2001
From: zhangchen <1652267879@qq.com>
Date: 星期二, 09 九月 2025 16:44:55 +0800
Subject: [PATCH] Merge branch 'master' of http://dh.leon056.com:7499/r/data2/Single_application into ID1956-已签到页面改版

---
 src/store/type/bedsideAuxiliaryScreen.type.ts |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/src/store/type/bedsideAuxiliaryScreen.type.ts b/src/store/type/bedsideAuxiliaryScreen.type.ts
index b6b8971..2415e3a 100644
--- a/src/store/type/bedsideAuxiliaryScreen.type.ts
+++ b/src/store/type/bedsideAuxiliaryScreen.type.ts
@@ -132,6 +132,8 @@
   上次透析血压列表: any[];
   上次透析超滤总量: number | null;
   四点血压图数据: 四点血压图数据[] | null;
+  患者出生日期: string;
+  置换总量: number | null;
 }
 
 export interface 四点血压图数据 {
@@ -154,6 +156,7 @@
   血压2_前半程最低收缩压: number | null;
   透后体重减干体重的差值: number | null;
   血压1_透前舒张压: number | null;
+  患者出生日期: string;
 }
 
 export interface VascularAccess {
@@ -213,6 +216,7 @@
 
 interface Customconfiguration {
   患者信息是否加密显示: number;
+  是否显示患者出生年月日: number;
 }
 
 export interface Sphygmomanometer {
@@ -242,6 +246,7 @@
   underTreatment: UnderTreatment;
   sphygmomanometer: Sphygmomanometer;
   customConfiguration: Customconfiguration;
+  患者出生日期: string;
 }
 
 export const defaultSphygmomanometer = () :Sphygmomanometer => {
@@ -497,6 +502,7 @@
     age: "", // 年龄
     gender: "", // 性别
     patForm: EPatForm.OUTPATIENT_SERVICE, // 患者来源
+    患者出生日期: "", // 患者出生日期
     patFormNumber: "", // 住院门诊号
     customConfiguration: defaultCustomconfiguration(), // 自定义配置项
     // @ts-ignore
@@ -507,12 +513,14 @@
     signedIn: defaultSignedIn(), // 已签到时需要的数据
     underTreatment: defaultUnderTreatment(), // 治疗中需要的数据
     sphygmomanometer: defaultSphygmomanometer(), // 血压计传过来的数据
+    患者出生日期: '',
   };
 };
 
 export const defaultCustomconfiguration = (): Customconfiguration => {
   return {
-    患者信息是否加密显示: 0
+    患者信息是否加密显示: 0,
+    是否显示患者出生年月日: 0,
   }
 }
 
@@ -566,6 +574,7 @@
       result.gender = seeMsg.透析状态?.性别 + "";
       result.patForm = seeMsg.透析状态?.患者来源;
       result.patFormNumber = seeMsg.透析状态?.患者门诊住院号;
+      result.患者出生日期 = seeMsg.透析状态?.患者出生日期 || "";
 
       // 未签到页面需要显示的
       if (treatmentStatus === EMedStatus.NOT_CHECKED_IN) {
@@ -590,7 +599,7 @@
         signedIn.置换方式 = seeMsg.透析状态?.置换方式 ?? "";
         signedIn.治疗模式 = seeMsg.透析状态?.透析方案 ?? "";
         signedIn.处方脱水量 = seeMsg.透析状态?.处方脱水量 ?? null;
-        signedIn.置换总量 = null;
+        signedIn.置换总量 = seeMsg.透析状态?.置换总量 ?? null;
         signedIn.透析器 = seeMsg.透析状态?.透析器 ?? "";
         signedIn.抗凝剂 = seeMsg.透析状态?.抗凝剂列表 ?? [];
         signedIn.最近平均脱水量 = seeMsg.透析状态?.最近平均脱水量 ?? "";

--
Gitblit v1.8.0