From 5f67438ad9e315ca94114c7f4b6c85369c621855 Mon Sep 17 00:00:00 2001
From: zhangchen <1652267879@qq.com>
Date: 星期二, 09 九月 2025 13:00:58 +0800
Subject: [PATCH] Merge branch 'master' of http://dh.leon056.com:7499/r/data2/Single_application into ID1766-添加推送登录功能
---
src/store/type/bedsideAuxiliaryScreen.type.ts | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/src/store/type/bedsideAuxiliaryScreen.type.ts b/src/store/type/bedsideAuxiliaryScreen.type.ts
index c89012a..000a25d 100644
--- a/src/store/type/bedsideAuxiliaryScreen.type.ts
+++ b/src/store/type/bedsideAuxiliaryScreen.type.ts
@@ -124,6 +124,7 @@
透析龄: number | null;
iot_血液流速: number | null;
透析液流量: number | null;
+ 患者出生日期: string;
}
export interface VascularAccess {
@@ -183,6 +184,7 @@
interface Customconfiguration {
患者信息是否加密显示: number;
+ 是否显示患者出生年月日: number;
}
export interface Sphygmomanometer {
@@ -212,6 +214,7 @@
underTreatment: UnderTreatment;
sphygmomanometer: Sphygmomanometer;
customConfiguration: Customconfiguration;
+ 患者出生日期: string;
}
export const defaultSphygmomanometer = () :Sphygmomanometer => {
@@ -443,12 +446,14 @@
signedIn: defaultSignedIn(), // 已签到时需要的数据
underTreatment: defaultUnderTreatment(), // 治疗中需要的数据
sphygmomanometer: defaultSphygmomanometer(), // 血压计传过来的数据
+ 患者出生日期: '',
};
};
export const defaultCustomconfiguration = (): Customconfiguration => {
return {
- 患者信息是否加密显示: 0
+ 患者信息是否加密显示: 0,
+ 是否显示患者出生年月日: 0
}
}
@@ -502,6 +507,7 @@
result.gender = seeMsg.透析状态?.性别 + "";
result.patForm = seeMsg.透析状态?.患者来源;
result.patFormNumber = seeMsg.透析状态?.患者门诊住院号;
+ result.患者出生日期 = seeMsg.透析状态?.患者出生日期;
// 未签到页面需要显示的
if (treatmentStatus === EMedStatus.NOT_CHECKED_IN) {
--
Gitblit v1.8.0