From c573cd85962d0f2ae1dd542f3e10e4097e63091c Mon Sep 17 00:00:00 2001
From: zhangchen <1652267879@qq.com>
Date: 星期五, 12 九月 2025 11:42:18 +0800
Subject: [PATCH] ID1766-暂存

---
 src/store/type/bedsideAuxiliaryScreen.type.ts |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/store/type/bedsideAuxiliaryScreen.type.ts b/src/store/type/bedsideAuxiliaryScreen.type.ts
index 9ef805e..de90df1 100644
--- a/src/store/type/bedsideAuxiliaryScreen.type.ts
+++ b/src/store/type/bedsideAuxiliaryScreen.type.ts
@@ -1,6 +1,7 @@
 import { tryConvertToInt, deepClone } from "@/utils/utils";
 import { Local } from "@/utils/storage";
 import dayjs from "dayjs";
+import type { DeviceLoginRecord } from './user.type';
 export interface IotInfo {
   属性历史列表: any[];
   床号: string;
@@ -133,6 +134,7 @@
   上次透析超滤总量: number | null;
   四点血压图数据: 四点血压图数据[] | null;
   患者出生日期: string;
+  置换总量: number | null;
 }
 
 export interface 四点血压图数据 {
@@ -155,6 +157,7 @@
   血压2_前半程最低收缩压: number | null;
   透后体重减干体重的差值: number | null;
   血压1_透前舒张压: number | null;
+  患者出生日期: string;
 }
 
 export interface VascularAccess {
@@ -210,6 +213,7 @@
   自定义配置项: Customconfiguration;
   服务端版本号: string;
   是否需要立即刷新: 0 | 1;
+  当前登录状态: DeviceLoginRecord | null;
 }
 
 interface Customconfiguration {
@@ -596,7 +600,7 @@
         signedIn.置换方式 = seeMsg.透析状态?.置换方式 ?? "";
         signedIn.治疗模式 = seeMsg.透析状态?.透析方案 ?? "";
         signedIn.处方脱水量 = seeMsg.透析状态?.处方脱水量 ?? null;
-        signedIn.置换总量 = null;
+        signedIn.置换总量 = seeMsg.透析状态?.置换总量 ?? null;
         signedIn.透析器 = seeMsg.透析状态?.透析器 ?? "";
         signedIn.抗凝剂 = seeMsg.透析状态?.抗凝剂列表 ?? [];
         signedIn.最近平均脱水量 = seeMsg.透析状态?.最近平均脱水量 ?? "";

--
Gitblit v1.8.0