单应用项目,可以创建很多独立工具类页面 ,不用登录 初始化的页面
zhangchen
2025-09-15 ecfcfee4d3bb36be356a78a226f4de8ca23ff745
src/store/type/bedsideAuxiliaryScreen.type.ts
@@ -25,6 +25,7 @@
  管路: string[];
  透析器: string[];
  透析模式: string[];
  透析单编号: string;
}
enum EPushType {
@@ -317,6 +318,7 @@
  carePackage: any[];
  punctureNeedle: PunctureNeedle[];
  vascularAccess: VascularAccess[];
  透析单编号: string;
}
export const defaultconsumablesCollection = (): ConsumablesCollection => {
@@ -328,6 +330,7 @@
    管路: [],
    透析器: [],
    透析模式: [],
    透析单编号: '',
  };
};
@@ -341,6 +344,7 @@
    carePackage: [], // 一次性使用透析护理包列表
    punctureNeedle: [], // 穿刺针列表
    vascularAccess: [], // 血管通路列表
    透析单编号: ''
  };
};
@@ -375,6 +379,7 @@
  体重增长_透前_上次透后: number | null; // 体重增长(透前-上次透后)
  体重增持_透前_干体重: number | null; // 体重增长(透前-干体重)
  四点血压图数据: 四点血压图数据[];
  透析单编号: string;
}
export const defaultSignedIn = (): SignedIn => {
@@ -409,6 +414,7 @@
    体重增长_透前_上次透后: null, // 体重增长(透前-上次透后)
    体重增持_透前_干体重: null, // 体重增长(透前-干体重)
    四点血压图数据: [],
    透析单编号: '',
  };
};
@@ -444,6 +450,7 @@
  dialysisAge: number | null, // 透析龄
  venousPressure2: number | null; // 静脉压
  transmembranePressure2: number | null; // 跨膜压
  透析单编号: string;
}
export interface MonitoringRecord {
@@ -485,6 +492,7 @@
    dialysisAge: null,
    venousPressure2: null, // 静脉压
    transmembranePressure2: null, // 跨膜压
    透析单编号: ''
  };
};
@@ -589,6 +597,7 @@
        notSignedIn.punctureNeedle = seeMsg.透析状态?.穿刺针列表 ?? [];
        notSignedIn.vascularAccess = seeMsg.透析状态?.血管通路列表 ?? [];
        notSignedIn.anticoagulant = seeMsg.透析状态?.抗凝剂列表 ?? [];
        notSignedIn.透析单编号 = seeMsg.透析状态?.透析单编号;
        result.notSignedIn = notSignedIn;
      }
@@ -635,6 +644,7 @@
          signedIn.上次透析单所属日期 = dayjs(signedIn.四点血压图数据[0].透析日期).format("YYYY-MM-DD");
          // signedIn.本次透析单所属日期 = dayjs(signedIn.四点血压图数据[0].透析日期).format("YYYY-MM-DD");
        }
        signedIn.透析单编号 = seeMsg.透析状态?.透析单编号;
        result.signedIn = signedIn;
      }
      // 剩下的全使用治疗中的页面
@@ -697,6 +707,7 @@
          seeMsg.透析状态?.实时ktv计算结果列表
            ?.realTimeKtvCalcDetailResultInfo ?? [];
        underTreatment.dialysisAge = seeMsg.透析状态?.透析龄 ?? null;
        underTreatment.透析单编号 = seeMsg.透析状态?.透析单编号;
        result.underTreatment = underTreatment;
      }