From d39007338382027ab13dd88df90a0f69f9a085d2 Mon Sep 17 00:00:00 2001
From: zhangchen <1652267879@qq.com>
Date: 星期六, 23 八月 2025 12:58:45 +0800
Subject: [PATCH] ID1956-暂存
---
src/store/type/bedsideAuxiliaryScreen.type.ts | 192 ++++++++++++++++++++++++++++++++++++-----------
1 files changed, 146 insertions(+), 46 deletions(-)
diff --git a/src/store/type/bedsideAuxiliaryScreen.type.ts b/src/store/type/bedsideAuxiliaryScreen.type.ts
index 20b3abf..3306461 100644
--- a/src/store/type/bedsideAuxiliaryScreen.type.ts
+++ b/src/store/type/bedsideAuxiliaryScreen.type.ts
@@ -1,5 +1,5 @@
import { tryConvertToInt, deepClone } from "@/utils/utils";
-import cache from "@/utils/cache";
+import { Local } from "@/utils/storage";
export interface IotInfo {
属性历史列表: any[];
床号: string;
@@ -121,6 +121,15 @@
透析结束时间: number | null;
透析处方备注: string;
最近最大脱水量透析时长: string;
+ 透析龄: number | null;
+ iot_血液流速: number | null;
+ 透析液流量: number | null;
+ 血流量: string;
+ 处方钠: number | null;
+ 葡萄糖: string;
+ 钙: number | null;
+ 上次透析血压列表: any[];
+ 上次透析超滤总量: number | null;
}
export interface VascularAccess {
@@ -173,6 +182,11 @@
推送类型: PushType;
透析状态: DialysisStatus | null;
床旁血压结果?: any;
+ 自定义配置项: Customconfiguration;
+}
+
+interface Customconfiguration {
+ 患者信息是否加密显示: number;
}
export interface Sphygmomanometer {
@@ -199,6 +213,7 @@
signedIn: SignedIn;
underTreatment: UnderTreatment;
sphygmomanometer: Sphygmomanometer;
+ customConfiguration: Customconfiguration;
}
export const defaultSphygmomanometer = () :Sphygmomanometer => {
@@ -295,34 +310,68 @@
};
export interface SignedIn {
- abnormalItems: AnomalyIndex[];
- dialysisPlan: string; // 透析方案
- prescriptionDehydrationVolume: number | null; // 透析处方脱水量
- dialyzer: string; // 透析器
- averageDehydrationRate: string; // 最近平均脱水量
- maximumDehydrationCapacity: string; // 最近最大脱水量
- maximumDehydrationCapacityDate: string; // 最近最大脱水量日期
- dryWeight: number | null; // 干体重
- preDialysisWeight: number | null; // 透前称重
- weightAfterLastDialysis: number | null; // 上次透后称重
- weightIncrease: number | null; // 体重增加
- weightIncreaseRate: number | null; // 体重增长率
+ 治疗模式: string;
+ 置换方式: string;
+ 处方脱水量: number | null;
+ 置换总量: number | null;
+ 透析器: string;
+ 抗凝剂: Anticoagulant[];
+ 最近平均脱水量: string;
+ 最近最大脱水量: string;
+ 最近最大脱水量透析时长: string;
+ 最近最大脱水量透析日期: string;
+ 处方备注: string;
+ 处方血流量: string;
+ 透析液流量: number | null;
+ 处方钠: number | null;
+ 葡萄糖: string;
+ 钙: number | null;
+ 干体重: number | null;
+ 脱水量: number | null;
+ 透前体重: number | null;
+ 上次透后体重: number | null;
+ 上次透析单所属日期: string;
+ 透析时长: string;
+ 透析时长2: string; // 透析时长2,
+ 上次透析血压列表: number[];
+ 上次透析超滤量: number | null;
+ 临时医嘱列表: any[];
+ 本次透析单所属日期: string; // 本次透析单所属日期
+ 体重增长_透前_上次透后: number | null; // 体重增长(透前-上次透后)
+ 体重增持_透前_干体重: number | null; // 体重增长(透前-干体重)
}
export const defaultSignedIn = (): SignedIn => {
return {
- abnormalItems: [], // 异常指标列表
- dialysisPlan: "", // 透析方案
- prescriptionDehydrationVolume: null, // 透析处方脱水量
- dialyzer: "", // 透析器
- averageDehydrationRate: "", // 最近平均脱水量
- maximumDehydrationCapacity: "", // 最近最大脱水量
- maximumDehydrationCapacityDate: "", // 最近最大脱水量日期
- dryWeight: null, // 干体重
- preDialysisWeight: null, // 透前称重
- weightAfterLastDialysis: null, // 上次透后称重
- weightIncrease: null, // 体重增加
- weightIncreaseRate: null, // 体重增长率
+ 治疗模式: '',
+ 置换方式: '',
+ 处方脱水量: null,
+ 置换总量: null,
+ 透析时长: '',
+ 透析时长2: '',
+ 透析器: '',
+ 抗凝剂: [],
+ 最近平均脱水量: '',
+ 最近最大脱水量: '',
+ 最近最大脱水量透析时长: '',
+ 最近最大脱水量透析日期: '',
+ 处方备注: '',
+ 处方血流量: '',
+ 透析液流量: null,
+ 处方钠: null,
+ 葡萄糖: '',
+ 钙: null,
+ 干体重: null,
+ 脱水量: null,
+ 透前体重: null,
+ 上次透后体重: null,
+ 上次透析单所属日期: '',
+ 上次透析血压列表: [],
+ 上次透析超滤量: null,
+ 临时医嘱列表: [],
+ 本次透析单所属日期: "",
+ 体重增长_透前_上次透后: null, // 体重增长(透前-上次透后)
+ 体重增持_透前_干体重: null, // 体重增长(透前-干体重)
};
};
@@ -355,6 +404,9 @@
bloodVolumeMonitoring: number | null; // 血容量监测
dialysisFluidFlowRate: number | null; // 透析液流量
ktvList: KtvItem[]; // 实时ktv计算结果列表
+ dialysisAge: number | null, // 透析龄
+ venousPressure2: number | null; // 静脉压
+ transmembranePressure2: number | null; // 跨膜压
}
export interface MonitoringRecord {
@@ -393,11 +445,14 @@
dialysisFluidFlowRate: null,
ktvList: [],
prescriptionDialysisDuration: null, // 透析处方的时长(单位:小时)
+ dialysisAge: null,
+ venousPressure2: null, // 静脉压
+ transmembranePressure2: null, // 跨膜压
};
};
export const defaultDeviceData = (): BedsideAuxiliaryScreen => {
- const pageType = cache.get("devcieCode")
+ const pageType = Local.get("devcieCode")
? EPageType.LOADING
: EPatForm.OUTPATIENT_SERVICE;
return {
@@ -411,6 +466,7 @@
gender: "", // 性别
patForm: EPatForm.OUTPATIENT_SERVICE, // 患者来源
patFormNumber: "", // 住院门诊号
+ customConfiguration: defaultCustomconfiguration(), // 自定义配置项
// @ts-ignore
pageType, // 当前要展示的页面
treatmentStatus: EMedStatus.NOT_CHECKED_IN, // 透析状态
@@ -421,6 +477,12 @@
sphygmomanometer: defaultSphygmomanometer(), // 血压计传过来的数据
};
};
+
+export const defaultCustomconfiguration = (): Customconfiguration => {
+ return {
+ 患者信息是否加密显示: 0
+ }
+}
export const formatDeviceData = (
data: BedsideAuxiliaryScreen,
@@ -433,6 +495,9 @@
// 默认床号(设备号)
result.devicdeNo = seeMsg.IOT信息?.床号;
result.deviceCode = seeMsg.IOT信息?.设备唯一编号;
+
+ // 自定义配置项
+ result.customConfiguration = seeMsg.自定义配置项 ?? defaultCustomconfiguration();
if (seeMsg.推送类型 === EPushType.SPHYGMOMANOMETR) {
result.pageType = EPageType.SPHYGMOMANOMETER;
@@ -485,22 +550,39 @@
else if (treatmentStatus === EMedStatus.SIGNED_IN) {
result.pageType = EPageType.SIGNED_IN;
const signedIn = defaultSignedIn();
- signedIn.abnormalItems = seeMsg.透析状态?.异常检验指标 ?? [];
- signedIn.dialysisPlan = seeMsg.透析状态?.透析方案 ?? "";
- signedIn.prescriptionDehydrationVolume =
- seeMsg.透析状态?.处方脱水量 ?? null;
- signedIn.dialyzer = seeMsg.透析状态?.透析器 ?? "";
- signedIn.averageDehydrationRate = seeMsg.透析状态?.最近平均脱水量 ?? "";
- signedIn.maximumDehydrationCapacity =
- seeMsg.透析状态?.最近最大脱水量 ?? "";
- signedIn.maximumDehydrationCapacityDate =
- seeMsg.透析状态?.最近最大脱水量日期 ?? "";
- signedIn.dryWeight = seeMsg.透析状态?.干体重 ?? null;
- signedIn.preDialysisWeight = seeMsg.透析状态?.透前称重 ?? null;
- signedIn.weightAfterLastDialysis =
- seeMsg.透析状态?.上次透后称重 ?? null;
- signedIn.weightIncrease = seeMsg.透析状态?.体重增加 ?? null;
- signedIn.weightIncreaseRate = seeMsg.透析状态?.体重增长率 ?? null;
+
+ signedIn.置换方式 = seeMsg.透析状态?.置换方式 ?? "";
+ signedIn.治疗模式 = seeMsg.透析状态?.透析方案 ?? "";
+ signedIn.处方脱水量 = seeMsg.透析状态?.处方脱水量 ?? null;
+ signedIn.置换总量 = null;
+ signedIn.透析器 = seeMsg.透析状态?.透析器 ?? "";
+ signedIn.抗凝剂 = seeMsg.透析状态?.抗凝剂列表 ?? [];
+ signedIn.最近平均脱水量 = seeMsg.透析状态?.最近平均脱水量 ?? "";
+ signedIn.最近最大脱水量 = seeMsg.透析状态?.最近最大脱水量 ?? "";
+ signedIn.最近最大脱水量透析时长 = seeMsg.透析状态?.最近最大脱水量透析时长 ?? "";
+ signedIn.最近最大脱水量透析日期 = seeMsg.透析状态?.最近最大脱水量日期 ?? "";
+ signedIn.处方备注 = seeMsg.透析状态?.透析处方备注 ?? "";
+ signedIn.处方血流量 = seeMsg.透析状态?.血流量 ?? "";
+ signedIn.透析液流量 = seeMsg.透析状态?.透析液流量 ?? null;
+ signedIn.处方钠 = seeMsg.透析状态?.处方钠 ?? null;
+ signedIn.葡萄糖 = seeMsg.透析状态?.葡萄糖 ?? "";
+ signedIn.钙 = seeMsg.透析状态?.钙 ?? null;
+ signedIn.干体重 = seeMsg.透析状态?.干体重 ?? null;
+ signedIn.脱水量 = seeMsg.透析状态?.处方脱水量 ?? null;
+ signedIn.透前体重 = seeMsg.透析状态?.透前称重 ?? null;
+ signedIn.上次透后体重 = seeMsg.透析状态?.上次透后称重 ?? null;
+ signedIn.上次透析单所属日期 = "";
+ signedIn.透析时长 = seeMsg.透析状态?.透析处方的时长_小时 + ':' + seeMsg.透析状态?.透析处方的时长_分钟;
+ signedIn.透析时长2 = seeMsg.透析状态?.透析处方的时长_小时 + ' h ';
+ if (seeMsg.透析状态?.透析处方的时长_分钟 && !['00', '0'].includes(seeMsg.透析状态?.透析处方的时长_分钟)) {
+ signedIn.透析时长2 += seeMsg.透析状态?.透析处方的时长_分钟 + ' min';
+ }
+ signedIn.上次透析血压列表 = seeMsg.透析状态?.上次透析血压列表 ?? [];
+ signedIn.上次透析超滤量 = seeMsg.透析状态?.上次透析超滤总量 ?? null;
+ signedIn.临时医嘱列表 = seeMsg.透析状态?.透析单医嘱列表 ?? [];
+ signedIn.本次透析单所属日期 = "";
+ signedIn.体重增长_透前_上次透后 = signedIn.透前体重 - signedIn.上次透后体重;
+ signedIn.体重增持_透前_干体重 = signedIn.透前体重 - signedIn.干体重;
result.signedIn = signedIn;
}
@@ -540,19 +622,31 @@
seeMsg.透析状态?.iot_脱水速率 ?? null;
underTreatment.currentBloodTemperature =
seeMsg.透析状态?.当前血温 ?? null;
- underTreatment.venousPressure = seeMsg.透析状态?.iot_静脉压 ?? null;
- underTreatment.transmembranePressure =
+ // 血压取监测记录的最后一条数据
+ if (seeMsg.透析状态?.监测记录列表 && seeMsg.透析状态?.监测记录列表.length > 0) {
+ const lastItem = seeMsg.透析状态?.监测记录列表[seeMsg.透析状态?.监测记录列表.length -1];
+ underTreatment.venousPressure = lastItem?.伸缩压 ?? null;
+ underTreatment.transmembranePressure = lastItem?.舒张压 ?? null;
+ } else {
+ underTreatment.venousPressure = null;
+ underTreatment.transmembranePressure = null;
+ }
+ underTreatment.venousPressure2 = seeMsg.透析状态?.iot_静脉压 ?? null;
+ underTreatment.transmembranePressure2 =
seeMsg.透析状态?.iot_跨膜压 ?? null;
underTreatment.ktv = seeMsg.透析状态?.实时ktv ?? "";
underTreatment.monitoringRecord = seeMsg.透析状态?.监测记录列表 ?? [];
underTreatment.doctorAdvice = seeMsg.透析状态?.透析单医嘱列表 ?? [];
- underTreatment.bloodFlow = seeMsg.透析状态?.iot_血流量 ?? null;
+ // underTreatment.bloodFlow = seeMsg.透析状态?.iot_血流量 ?? null;
+ underTreatment.bloodFlow = seeMsg.透析状态?.iot_血液流速 ?? null;
underTreatment.dialysisFluidFlowRate =
- seeMsg.透析状态?.iot_血流量 ?? null;
+ seeMsg.透析状态?.透析液流量 ?? null;
underTreatment.bloodVolumeMonitoring = null;
underTreatment.ktvList =
seeMsg.透析状态?.实时ktv计算结果列表
?.realTimeKtvCalcDetailResultInfo ?? [];
+ underTreatment.dialysisAge = seeMsg.透析状态?.透析龄 ?? null;
+
result.underTreatment = underTreatment;
}
}
@@ -614,6 +708,12 @@
result = "前";
} else if (mode === "后置换") {
result = "后";
+ } else if (mode === "中置换") {
+ result = "中";
+ } else if (mode === "混合置换") {
+ result = "混合";
+ } else if (mode === "/") {
+ result = "";
}
return result;
};
--
Gitblit v1.8.0