单应用项目,可以创建很多独立工具类页面 ,不用登录 初始化的页面
zhangchen
2025-07-31 50cad200be31339ddb98833da16fe88a3c6e00cb
src/store/type/bedsideAuxiliaryScreen.type.ts
@@ -1,5 +1,5 @@
import { tryConvertToInt } from "@/utils/utils";
import cache from "@/utils/cache";
import { tryConvertToInt, deepClone } from "@/utils/utils";
import { Local } from "@/utils/storage";
export interface IotInfo {
  属性历史列表: any[];
  床号: string;
@@ -57,7 +57,10 @@
  分区编号: string;
  处方脱水量: number | null;
  实时ktv: string;
  实时ktv计算结果列表: null | { realTimeKtvCalcDetailResultInfo: KtvItem[], 透析单编号: string };
  实时ktv计算结果列表: null | {
    realTimeKtvCalcDetailResultInfo: KtvItem[];
    透析单编号: string;
  };
  实时脱水量: number | null;
  干体重: number | null;
  年龄: number | null;
@@ -117,7 +120,9 @@
  透析状态: string; // '0.0'这种格式的,得格式化一下
  透析结束时间: number | null;
  透析处方备注: string;
  最近最大脱水量透析时长: string
  最近最大脱水量透析时长: string;
  透析龄: number | null;
  iot_血液流速: number | null;
}
export interface VascularAccess {
@@ -156,15 +161,30 @@
  项目结果: string;
}
export interface Countdown {
  当前服务器时间?: string;
  提醒文本?: string;
  提醒文本字典?: any[];
  设定提醒倒计时?: number;
}
export interface SseMsgData {
  IOT信息: IotInfo | null;
  使用耗材字典: ConsumablesCollection | null; // 当透析状态为治疗中时该字段为null
  倒计时: "";
  倒计时: Countdown | null;
  推送类型: PushType;
  透析状态: DialysisStatus | null;
  床旁血压结果?: any;
}
export interface Sphygmomanometer {
  sbp: number | null; // 高压
  dbp: number | null; // 低压
  pulseRate: number | null; // 心率
}
export interface BedsideAuxiliaryScreen {
  deviceCode: string;
  devicdeNo: string | number;
  recordCode: string;
  patientCode: string;
@@ -180,7 +200,16 @@
  notSignedIn: NotSignedIn;
  signedIn: SignedIn;
  underTreatment: UnderTreatment;
  sphygmomanometer: Sphygmomanometer;
}
export const defaultSphygmomanometer = () :Sphygmomanometer => {
  return {
    sbp: null,
    dbp: null,
    pulseRate: null,
  }
}
export enum EPageType {
  NOT_INIT = 0, // 未初始化(没有设备编号)
@@ -280,6 +309,7 @@
  weightAfterLastDialysis: number | null; // 上次透后称重
  weightIncrease: number | null; // 体重增加
  weightIncreaseRate: number | null; // 体重增长率
  maximumDehydrationDuration: string;
}
export const defaultSignedIn = (): SignedIn => {
@@ -294,8 +324,9 @@
    dryWeight: null, // 干体重
    preDialysisWeight: null, // 透前称重
    weightAfterLastDialysis: null, // 上次透后称重
    weightIncrease: null, // 体重增加
    weightIncrease: null, // 体重增加
    weightIncreaseRate: null, // 体重增长率
    maximumDehydrationDuration: '',
  };
};
@@ -324,10 +355,11 @@
  ktv: string; // 实时ktv
  monitoringRecord: MonitoringRecord[]; // 监测记录列表
  doctorAdvice: any[]; // 透析单医嘱列表
  bloodFlow: string; // 血流量
  bloodFlow: number | null; // 血流量
  bloodVolumeMonitoring: number | null; // 血容量监测
  dialysisFluidFlowRate: number | null; // 透析液流量
  ktvList: KtvItem[]; // 实时ktv计算结果列表
  dialysisAge: number | null, // 透析龄
}
export interface MonitoringRecord {
@@ -361,19 +393,21 @@
    ktv: "",
    monitoringRecord: [],
    doctorAdvice: [],
    bloodFlow: "",
    bloodFlow: null,
    bloodVolumeMonitoring: null,
    dialysisFluidFlowRate: null,
    ktvList: [],
    prescriptionDialysisDuration: null, // 透析处方的时长(单位:小时)
    dialysisAge: null,
  };
};
export const defaultDeviceData = (): BedsideAuxiliaryScreen => {
  const pageType = cache.get("devcieCode")
  const pageType = Local.get("devcieCode")
    ? EPageType.LOADING
    : EPatForm.OUTPATIENT_SERVICE;
  return {
    deviceCode: "", // 设备code
    devicdeNo: "", // 设备号
    recordCode: "", // 透析单code
    patientCode: "", // 患者code
@@ -390,19 +424,32 @@
    notSignedIn: defalutNotSignedIn(), // 未签到时需要的数据
    signedIn: defaultSignedIn(), // 已签到时需要的数据
    underTreatment: defaultUnderTreatment(), // 治疗中需要的数据
    sphygmomanometer: defaultSphygmomanometer(), // 血压计传过来的数据
  };
};
export const formatDeviceData = (
  data: BedsideAuxiliaryScreen,
  seeMsg: SseMsgData
): BedsideAuxiliaryScreen => {
  const result = defaultDeviceData();
  const result = deepClone(data);
  // 默认床号(设备号)
  result.devicdeNo = seeMsg.IOT信息?.床号;
  result.deviceCode = seeMsg.IOT信息?.设备唯一编号;
  if (seeMsg.推送类型 === EPushType.SPHYGMOMANOMETR) {
    result.pageType = EPageType.SPHYGMOMANOMETER;
    const sphygmomanometer = defaultSphygmomanometer();
    sphygmomanometer.sbp = seeMsg?.床旁血压结果?.sbp;
    sphygmomanometer.pulseRate = seeMsg?.床旁血压结果?.pulseRate;
    sphygmomanometer.dbp = seeMsg?.床旁血压结果?.dbp;
    result.sphygmomanometer = sphygmomanometer;
  } else if (seeMsg.推送类型 === EPushType.CENTRAL_MONITORING) {
    // 判断是否存在透析状态,如果不存在就是没有排班
    if (seeMsg.透析状态 === null || !seeMsg.透析状态) {
@@ -456,9 +503,12 @@
          seeMsg.透析状态?.最近最大脱水量日期 ?? "";
        signedIn.dryWeight = seeMsg.透析状态?.干体重 ?? null;
        signedIn.preDialysisWeight = seeMsg.透析状态?.透前称重 ?? null;
        signedIn.weightAfterLastDialysis = seeMsg.透析状态?.上次透后称重 ?? null;
        signedIn.weightAfterLastDialysis =
          seeMsg.透析状态?.上次透后称重 ?? null;
        signedIn.weightIncrease = seeMsg.透析状态?.体重增加 ?? null;
        signedIn.weightIncreaseRate = seeMsg.透析状态?.体重增长率 ?? null;
        signedIn.maximumDehydrationDuration =
          seeMsg.透析状态?.最近最大脱水量透析时长 ?? "";
        result.signedIn = signedIn;
      }
@@ -475,8 +525,10 @@
          seeMsg.透析状态?.最近最大脱水量 ?? "";
        underTreatment.maximumDehydrationCapacityDate =
          seeMsg.透析状态?.最近最大脱水量日期 ?? "";
        underTreatment.maximumDehydrationDuration = seeMsg.透析状态?.最近最大脱水量透析时长 ?? "";
        underTreatment.prescriptionRemarks = seeMsg.透析状态?.透析处方备注 ?? "";
        underTreatment.maximumDehydrationDuration =
          seeMsg.透析状态?.最近最大脱水量透析时长 ?? "";
        underTreatment.prescriptionRemarks =
          seeMsg.透析状态?.透析处方备注 ?? "";
        underTreatment.abnormalItems = seeMsg.透析状态?.异常检验指标 ?? [];
        underTreatment.prescriptionDialysisDuration =
          seeMsg.透析状态?.透析处方的时长 ?? null;
@@ -496,16 +548,31 @@
          seeMsg.透析状态?.iot_脱水速率 ?? null;
        underTreatment.currentBloodTemperature =
          seeMsg.透析状态?.当前血温 ?? null;
        underTreatment.venousPressure = seeMsg.透析状态?.iot_静脉压 ?? null;
        underTreatment.transmembranePressure =
          seeMsg.透析状态?.iot_跨膜压 ?? null;
          // 血压取监测记录的最后一条数据
          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.venousPressure = seeMsg.透析状态?.iot_静脉压 ?? null;
        // underTreatment.transmembranePressure =
        //   seeMsg.透析状态?.iot_跨膜压 ?? null;
        underTreatment.ktv = seeMsg.透析状态?.实时ktv ?? "";
        underTreatment.monitoringRecord = seeMsg.透析状态?.监测记录列表 ?? [];
        underTreatment.doctorAdvice = seeMsg.透析状态?.透析单医嘱列表 ?? [];
        underTreatment.bloodFlow = "";
        underTreatment.dialysisFluidFlowRate = seeMsg.透析状态?.iot_血流量 ?? null;
        underTreatment.bloodVolumeMonitoring = seeMsg.透析状态?.iot_透析液流速 ?? null;
        underTreatment.ktvList = seeMsg.透析状态?.实时ktv计算结果列表?.realTimeKtvCalcDetailResultInfo ?? [];
        // underTreatment.bloodFlow = seeMsg.透析状态?.iot_血流量 ?? null;
        underTreatment.bloodFlow = seeMsg.透析状态?.iot_血液流速 ?? null;
        underTreatment.dialysisFluidFlowRate =
          seeMsg.透析状态?.iot_血流量 ?? null;
        underTreatment.bloodVolumeMonitoring =  null;
        underTreatment.ktvList =
          seeMsg.透析状态?.实时ktv计算结果列表
            ?.realTimeKtvCalcDetailResultInfo ?? [];
        underTreatment.dialysisAge = seeMsg.透析状态?.透析龄 ?? null;
        result.underTreatment = underTreatment;
      }
    }
@@ -563,10 +630,10 @@
export const formatSubstituteMode = (mode: string) => {
  let result = "";
  if (mode === '前置换') {
    result = '前'
  } else if (mode === '后置换') {
    result = '后'
  if (mode === "前置换") {
    result = "前";
  } else if (mode === "后置换") {
    result = "后";
  }
  return result;
}
};