From 521aeaee5f182fbea458b655cc7c4120348a61ae Mon Sep 17 00:00:00 2001
From: zhangchen <1652267879@qq.com>
Date: 星期一, 21 七月 2025 17:15:07 +0800
Subject: [PATCH] ID1625-修改未签到时抗凝剂

---
 src/store/type/bedsideAuxiliaryScreen.type.ts |   32 ++++++++++++++++++++------------
 1 files changed, 20 insertions(+), 12 deletions(-)

diff --git a/src/store/type/bedsideAuxiliaryScreen.type.ts b/src/store/type/bedsideAuxiliaryScreen.type.ts
index 20a17bc..01f3425 100644
--- a/src/store/type/bedsideAuxiliaryScreen.type.ts
+++ b/src/store/type/bedsideAuxiliaryScreen.type.ts
@@ -116,16 +116,27 @@
   类型: string;
 }
 
-export interface Dialyzer extends Anticoagulant {}
+export interface Dialyzer extends item {}
 
-export interface Piping extends Anticoagulant {}
+export interface Piping extends item {}
 
-export interface PunctureNeedle extends Anticoagulant {}
+export interface PunctureNeedle extends item {}
 
-export interface Anticoagulant {
+export interface item {
   name: string;
   单位: string;
   数量: number | null;
+}
+
+export interface Anticoagulant {
+    name: string;
+    单位: string;
+    数量: number | null;
+    总量: number | null;
+    是否为追加: number | null;
+    维持剂量: number | null;
+    追加剂量: number | null;
+    首剂: number | null;
 }
 
 export interface AnomalyIndex {
@@ -158,7 +169,7 @@
   consumablesCollection: ConsumablesCollection;
   pageType: PageType;
   notSignedIn: NotSignedIn;
-  nderTreatment: UnderTreatment;
+  underTreatment: UnderTreatment;
 }
 
 export enum EPageType {
@@ -215,12 +226,7 @@
   dialyzerList: Dialyzer[];
   pipingList: Piping[];
   dialysateList: any[];
-  anticoagulant: {
-    name: string;
-    unit: string;
-    firstAndAddition: string;
-    total: string;
-  }[];
+  anticoagulant: Anticoagulant[];
   carePackage: any[];
   punctureNeedle: PunctureNeedle[];
   vascularAccess: VascularAccess[];
@@ -346,7 +352,7 @@
     treatmentStatus: EMedStatus.NOT_CHECKED_IN, // 透析状态
     consumablesCollection: defaultconsumablesCollection(), // 未排班时需要的数据
     notSignedIn: defalutNotSignedIn(), // 未签到时需要的数据
-    nderTreatment: defaultUnderTreatment(), // 治疗中需要的数据
+    underTreatment: defaultUnderTreatment(), // 治疗中需要的数据
   };
 };
 
@@ -409,6 +415,8 @@
         notSignedIn.carePackage = seeMsg.透析状态?.护理包列表 || [];
         notSignedIn.punctureNeedle = seeMsg.透析状态?.穿刺针列表 || [];
         notSignedIn.vascularAccess = seeMsg.透析状态?.血管通路列表 || [];
+        notSignedIn.anticoagulant = seeMsg.透析状态?.抗凝剂列表 || [];
+
         result.notSignedIn = notSignedIn;
       }
       // 已签到未开始透析需要显示的

--
Gitblit v1.8.0