单应用项目,可以创建很多独立工具类页面 ,不用登录 初始化的页面
zhangchen
2025-07-24 86850a45ed466f32b3336940c7ed8f4dea700a93
src/store/type/bedsideAuxiliaryScreen.type.ts
@@ -309,7 +309,9 @@
  maximumDehydrationDuration: string; // 最大脱水量那天的时长
  prescriptionRemarks: string; // 透析处方备注
  abnormalItems: AnomalyIndex[]; // 异常指标列表
  prescriptionDialysisDuration: string; // 透析处方的时长(单位:小时)
  prescriptionDialysisDurationHour: string; // 透析处方的时长(小时部分)
  prescriptionDialysisDurationMin: string; // 透析处方的时长(分钟部分)
  prescriptionDialysisDuration: number | null; // 透析处方的时长(单位:小时)
  dialysisStartTime: number | null; // 透析开始时间(时间戳)
  dialysisEndTime: number | null; // 透析结束时间(时间戳)
  dialysisDuration: number | null; // 已透析时长(单位:分钟)
@@ -328,7 +330,7 @@
  ktvList: KtvItem[]; // 实时ktv计算结果列表
}
interface MonitoringRecord {
export interface MonitoringRecord {
  伸缩压: string; // 血压伸缩压
  舒张压: string; // 血压舒张压
  脉搏: string; // 脉搏
@@ -345,7 +347,8 @@
    maximumDehydrationDuration: "",
    prescriptionRemarks: "",
    abnormalItems: [],
    prescriptionDialysisDuration: "",
    prescriptionDialysisDurationHour: "",
    prescriptionDialysisDurationMin: "",
    dialysisStartTime: null,
    dialysisEndTime: null,
    dialysisDuration: null,
@@ -362,6 +365,7 @@
    bloodVolumeMonitoring: null,
    dialysisFluidFlowRate: null,
    ktvList: [],
    prescriptionDialysisDuration: null, // 透析处方的时长(单位:小时)
  };
};
@@ -475,15 +479,19 @@
        underTreatment.prescriptionRemarks = seeMsg.透析状态?.透析处方备注 ?? "";
        underTreatment.abnormalItems = seeMsg.透析状态?.异常检验指标 ?? [];
        underTreatment.prescriptionDialysisDuration =
          seeMsg.透析状态?.透析处方的时长 ?? null;
        underTreatment.prescriptionDialysisDurationHour =
          seeMsg.透析状态?.透析处方的时长_小时 ?? "";
        underTreatment.prescriptionDialysisDurationMin =
          seeMsg.透析状态?.透析处方的时长_分钟 ?? "";
        underTreatment.dialysisStartTime =
          seeMsg.透析状态?.透析开始时间 ?? null;
        underTreatment.dialysisEndTime = seeMsg.透析状态?.透析结束时间 ?? null;
        underTreatment.dialysisDuration = seeMsg.透析状态?.iot_透析时间 ?? null;
        underTreatment.prescriptionDehydrationVolume =
          seeMsg.透析状态?.处方脱水量 ?? null;
          seeMsg.透析状态?.iot_脱水目标量 ?? null;
        underTreatment.currentDehydrationVolume =
          seeMsg.透析状态?.实时脱水量 ?? null;
          seeMsg.透析状态?.iot_当前脱水量 ?? null;
        underTreatment.currentUltrafiltrationRate =
          seeMsg.透析状态?.iot_脱水速率 ?? null;
        underTreatment.currentBloodTemperature =