| | |
| | | 类型: 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 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 { |
| | |
| | | dialyzerList: Dialyzer[]; |
| | | pipingList: Piping[]; |
| | | dialysateList: any[]; |
| | | anticoagulant: { |
| | | name: string; |
| | | unit: string; |
| | | firstAndAddition: string; |
| | | total: string; |
| | | }[]; |
| | | anticoagulant: Anticoagulant[]; |
| | | carePackage: any[]; |
| | | punctureNeedle: PunctureNeedle[]; |
| | | vascularAccess: VascularAccess[]; |
| | |
| | | notSignedIn.carePackage = seeMsg.透析状态?.护理包列表 || []; |
| | | notSignedIn.punctureNeedle = seeMsg.透析状态?.穿刺针列表 || []; |
| | | notSignedIn.vascularAccess = seeMsg.透析状态?.血管通路列表 || []; |
| | | notSignedIn.anticoagulant = seeMsg.透析状态?.抗凝剂列表 || []; |
| | | |
| | | result.notSignedIn = notSignedIn; |
| | | } |
| | | // 已签到未开始透析需要显示的 |