|
@@ -47,6 +47,7 @@
|
47
|
47
|
<el-checkbox :label="replacement_total"></el-checkbox>
|
48
|
48
|
<el-checkbox :label="blood_flow_volume"></el-checkbox>
|
49
|
49
|
<el-checkbox :label="dialysate_flow"></el-checkbox>
|
|
50
|
+ <el-checkbox :label="displace_liqui_value"></el-checkbox>
|
50
|
51
|
</el-checkbox-group>
|
51
|
52
|
</el-form>
|
52
|
53
|
<el-form :inline="true" class="demo-form-inline newInline" :model="doubleReview" label-width="105px">
|
|
@@ -197,10 +198,11 @@
|
197
|
198
|
anticoagulant_weichi:"维持:",
|
198
|
199
|
anticoagulant_zongliang:"总量:",
|
199
|
200
|
displace_liqui_part:"置换液:",
|
200
|
|
- replacement_total:"置换总量:",
|
|
201
|
+ replacement_total:"置换量:",
|
201
|
202
|
blood_flow_volume:"处方血流量:",
|
202
|
203
|
dialysate_flow:"透析液流量:",
|
203
|
|
- blood_access_part_opera_id:"通路类型:"
|
|
204
|
+ blood_access_part_opera_id:"通路类型:",
|
|
205
|
+ displace_liqui_value:"置换液总量:",
|
204
|
206
|
}
|
205
|
207
|
}, methods: {
|
206
|
208
|
|
|
@@ -579,7 +581,7 @@
|
579
|
581
|
changeBoxOne(val){
|
580
|
582
|
var arr = []
|
581
|
583
|
var str = val.join(';')
|
582
|
|
- console.log("strw222222222",str)
|
|
584
|
+
|
583
|
585
|
if(str.indexOf('透析模式')!=-1 && this.prescription!=null){
|
584
|
586
|
arr.push("透析模式:"+(this.getMode(this.prescription.mode_id)?this.getMode(this.prescription.mode_id):""))
|
585
|
587
|
}
|
|
@@ -630,19 +632,19 @@
|
630
|
632
|
}
|
631
|
633
|
|
632
|
634
|
if(str.indexOf("置换液")!=-1 && this.prescription!=null){
|
633
|
|
- arr.push("置换液:"+(this.prescription.displace_liqui_part?this.prescription.displace_liqui_part:""))
|
|
635
|
+ arr.push("置换液:"+(this.getDisplace(this.prescription.displace_liqui_part)?this.getDisplace(this.prescription.displace_liqui_part):""))
|
634
|
636
|
}
|
635
|
637
|
|
636
|
638
|
if(str.indexOf("置换液")!=-1 && this.prescription==null){
|
637
|
639
|
arr.push("置换液:")
|
638
|
640
|
}
|
639
|
641
|
|
640
|
|
- if(str.indexOf("置换总量")!=-1 && this.prescription!=null){
|
641
|
|
- arr.push("置换总量:"+(this.prescription.replacement_total?this.prescription.replacement_total:""))
|
|
642
|
+ if(str.indexOf("置换量")!=-1 && this.prescription!=null){
|
|
643
|
+ arr.push("置换量:"+(this.prescription.replacement_total?this.prescription.replacement_total:""))
|
642
|
644
|
}
|
643
|
645
|
|
644
|
|
- if(str.indexOf("置换总量")!=-1 && this.prescription==null){
|
645
|
|
- arr.push("置换总量:")
|
|
646
|
+ if(str.indexOf("置换量")!=-1 && this.prescription==null){
|
|
647
|
+ arr.push("置换量:")
|
646
|
648
|
}
|
647
|
649
|
|
648
|
650
|
if(str.indexOf("处方血流量")!=-1 && this.prescription!=null){
|
|
@@ -660,6 +662,12 @@
|
660
|
662
|
if(str.indexOf("透析液流量")!=-1 && this.prescription==null){
|
661
|
663
|
arr.push("透析液流量:")
|
662
|
664
|
}
|
|
665
|
+ if(str.indexOf("置换液总量")!=-1 && this.prescription!=null){
|
|
666
|
+ arr.push("置换液总量:"+(this.prescription.displace_liqui_value?this.prescription.displace_liqui_value:""))
|
|
667
|
+ }
|
|
668
|
+ if(str.indexOf("置换液总量")!=-1 && this.prescription == null){
|
|
669
|
+ arr.push("置换液总量:")
|
|
670
|
+ }
|
663
|
671
|
console.log("arr",arr)
|
664
|
672
|
this.doubleReview.dialysis_parameter_desc = arr.join(";")
|
665
|
673
|
if(val.length>0){
|
|
@@ -671,8 +679,7 @@
|
671
|
679
|
changeBoxTwo(val){
|
672
|
680
|
var arr = []
|
673
|
681
|
var str = val.join(';')
|
674
|
|
- console.log("strw222222222",str)
|
675
|
|
-
|
|
682
|
+
|
676
|
683
|
if(str.indexOf('通路类型')!=-1 && this.predialysis_evaluation.id!=0){
|
677
|
684
|
arr.push("通路类型:"+this.getBloodAccess(this.predialysis_evaluation.blood_access_part_opera_id))
|
678
|
685
|
|
|
@@ -707,7 +714,7 @@
|
707
|
714
|
changeBoxThree(val){
|
708
|
715
|
var arr = []
|
709
|
716
|
var str = val.join(';')
|
710
|
|
- console.log("strw222222222",str)
|
|
717
|
+
|
711
|
718
|
if(str.indexOf('泵前补液测管未夹')!=-1){
|
712
|
719
|
arr.push("泵前补液测管未夹:")
|
713
|
720
|
}
|
|
@@ -864,6 +871,7 @@
|
864
|
871
|
}
|
865
|
872
|
return name
|
866
|
873
|
},
|
|
874
|
+
|
867
|
875
|
getBloodAccess(id){
|
868
|
876
|
|
869
|
877
|
let vascular_access_desc = getDataConfig(
|
|
@@ -877,7 +885,18 @@
|
877
|
885
|
}
|
878
|
886
|
}
|
879
|
887
|
return name
|
880
|
|
- }
|
|
888
|
+ },
|
|
889
|
+ getDisplace(id){
|
|
890
|
+ var name = ""
|
|
891
|
+ var arr = this.$store.getters.displace_liqui
|
|
892
|
+ console.log("arr233233233223",arr)
|
|
893
|
+ for(let i=0;i<arr.length;i++){
|
|
894
|
+ if(id == arr[i].id){
|
|
895
|
+ name = arr[i].name
|
|
896
|
+ }
|
|
897
|
+ }
|
|
898
|
+ return name
|
|
899
|
+ },
|
881
|
900
|
},
|
882
|
901
|
|
883
|
902
|
props: {
|
|
@@ -920,7 +939,7 @@
|
920
|
939
|
|
921
|
940
|
if(this.prescription!=null && this.prescription.id!=0){
|
922
|
941
|
if(this.prescription.dialyzer_perfusion_apparatus !="" || this.prescription.dialysis_dialyszers!="" || this.prescription.dialysis_irrigation!=""){
|
923
|
|
- this.diazes = ""
|
|
942
|
+ this.diazes = "透析器/灌流器:"
|
924
|
943
|
this.diazes = this.diazes + this.prescription.dialyzer_perfusion_apparatus
|
925
|
944
|
this.diazes = this.diazes + this.prescription.dialysis_dialyszers+this.prescription.dialysis_irrigation
|
926
|
945
|
}else{
|
|
@@ -929,95 +948,116 @@
|
929
|
948
|
}
|
930
|
949
|
|
931
|
950
|
if(this.prescription.dialysate_formulation!=""){
|
|
951
|
+ this.dialysate_formulation = "透析液配方:"
|
932
|
952
|
this.dialysate_formulation = this.dialysate_formulation + this.GetDialysateFormulationById(this.prescription.dialysate_formulation)
|
933
|
953
|
}else{
|
934
|
954
|
this.dialysate_formulation = this.dialysate_formulation
|
935
|
955
|
}
|
936
|
956
|
|
937
|
957
|
if(this.prescription.kalium!=""){
|
|
958
|
+ this.kalium = "钾:"
|
938
|
959
|
this.kalium = this.kalium + (this.prescription.kalium?this.prescription.kalium:"")
|
939
|
960
|
}else{
|
940
|
961
|
this.kalium = this.kalium
|
941
|
962
|
}
|
942
|
963
|
|
943
|
964
|
if(this.prescription.calcium!=""){
|
|
965
|
+ this.calcium = "钙:"
|
944
|
966
|
this.calcium = this.calcium + (this.prescription.calcium?this.prescription.calcium:"")
|
945
|
967
|
}else{
|
946
|
968
|
this.calcium = this.calcium
|
947
|
969
|
}
|
948
|
970
|
|
949
|
971
|
if(this.prescription.mode_id > 0){
|
|
972
|
+ this.dialys_mode= "透析模式:"
|
950
|
973
|
this.dialys_mode = this.dialys_mode + this.getMode(this.prescription.mode_id)
|
951
|
974
|
}else{
|
952
|
975
|
this.dialys_mode = this.dialys_mode
|
953
|
976
|
}
|
954
|
977
|
|
955
|
978
|
if(this.prescription.dialysis_duration_hour !="" || this.prescription.dialysis_duration_minute!=""){
|
|
979
|
+ this.long_time ="透析时长:"
|
956
|
980
|
this.long_time = this.long_time + (this.prescription.dialysis_duration_hour?this.prescription.dialysis_duration_hour:"") +"小时" +(this.prescription.dialysis_duration_minute?this.prescription.dialysis_duration_minute:"") +"分"
|
957
|
981
|
}else{
|
958
|
982
|
this.long_time = this.long_time
|
959
|
983
|
}
|
960
|
984
|
|
961
|
985
|
if(this.prescription.target_ultrafiltration!=""){
|
|
986
|
+ this.target_ultrafiltration = "目标超滤量:"
|
962
|
987
|
this.target_ultrafiltration = this.target_ultrafiltration + (this.prescription.target_ultrafiltration?this.prescription.target_ultrafiltration:"")
|
963
|
988
|
}else{
|
964
|
989
|
this.target_ultrafiltration = this.target_ultrafiltration
|
965
|
990
|
}
|
966
|
991
|
|
967
|
992
|
if(this.prescription.anticoagulant!=""){
|
968
|
|
- this.anticoagulant = this.anticoagulant + this.getAnticoagulant(this.prescription.anticoagulant)
|
|
993
|
+ this.anticoagulant = "抗凝剂:"
|
|
994
|
+ this.anticoagulant = this.anticoagulant + (this.getAnticoagulant(this.prescription.anticoagulant)?this.getAnticoagulant(this.prescription.anticoagulant):"")
|
969
|
995
|
}else{
|
970
|
996
|
this.anticoagulant = this.anticoagulant
|
971
|
997
|
}
|
972
|
998
|
|
973
|
999
|
if(this.prescription.anticoagulant_shouji!=""){
|
|
1000
|
+ this.anticoagulant_shouji="首剂:"
|
974
|
1001
|
this.anticoagulant_shouji = this.anticoagulant_shouji + (this.prescription.anticoagulant_shouji?this.prescription.anticoagulant_shouji:"")
|
975
|
1002
|
}else{
|
976
|
1003
|
this.anticoagulant_shouji = this.anticoagulant_shouji
|
977
|
1004
|
}
|
978
|
1005
|
|
979
|
1006
|
if(this.prescription.anticoagulant_weichi!=""){
|
|
1007
|
+ this.anticoagulant_weichi = "维持:"
|
980
|
1008
|
this.anticoagulant_weichi = this.anticoagulant_weichi + (this.prescription.anticoagulant_weichi?this.prescription.anticoagulant_weichi:"")
|
981
|
1009
|
}else{
|
982
|
1010
|
this.anticoagulant_weichi = this.anticoagulant_weichi
|
983
|
1011
|
}
|
984
|
1012
|
|
985
|
1013
|
if(this.prescription.anticoagulant_zongliang!=""){
|
|
1014
|
+ this.anticoagulant_zongliang = "总量:"
|
986
|
1015
|
this.anticoagulant_zongliang = this.anticoagulant_zongliang+(this.prescription.anticoagulant_zongliang?this.prescription.anticoagulant_zongliang:"")
|
987
|
1016
|
}else{
|
988
|
1017
|
this.anticoagulant_zongliang = this.anticoagulant_zongliang
|
989
|
1018
|
}
|
990
|
1019
|
|
991
|
1020
|
if(this.prescription.displace_liqui_part!=""){
|
992
|
|
- this.displace_liqui_part = this.displace_liqui_part + (this.prescription.displace_liqui_part?this.prescription.displace_liqui_part:"")
|
|
1021
|
+ this.displace_liqui_part="置换液:"
|
|
1022
|
+ this.displace_liqui_part = this.displace_liqui_part + (this.getDisplace(this.prescription.displace_liqui_part)?this.getDisplace(this.prescription.displace_liqui_part):"")
|
993
|
1023
|
}else{
|
994
|
|
- this.displace_liqui_part = this.displace_liqui_part
|
|
1024
|
+ this.displace_liqui_part = this.getDisplace(this.displace_liqui_part)
|
995
|
1025
|
}
|
996
|
1026
|
|
997
|
1027
|
if(this.prescription.replacement_total!=""){
|
|
1028
|
+ this.replacement_total = "置换量:"
|
998
|
1029
|
this.replacement_total = this.replacement_total + (this.prescription.replacement_total?this.prescription.replacement_total:"")
|
999
|
1030
|
}else{
|
1000
|
1031
|
this.replacement_total = this.replacement_total
|
1001
|
1032
|
}
|
1002
|
1033
|
|
1003
|
1034
|
if(this.prescription.dialysate_flow!=""){
|
|
1035
|
+ this.dialysate_flow = "透析液流量:"
|
1004
|
1036
|
this.dialysate_flow = this.dialysate_flow + (this.prescription.dialysate_flow?this.prescription.dialysate_flow:"")
|
1005
|
1037
|
}else{
|
1006
|
1038
|
this.dialysate_flow = this.dialysate_flow
|
1007
|
1039
|
}
|
1008
|
|
-
|
|
1040
|
+
|
|
1041
|
+ if(this.prescription.displace_liqui_value!=""){
|
|
1042
|
+ this.displace_liqui_value = "置换液总量:"
|
|
1043
|
+ this.displace_liqui_value = this.displace_liqui_value + this.prescription.displace_liqui_value
|
|
1044
|
+ console.log("置换液总量",this.displace_liqui_value)
|
|
1045
|
+ }
|
|
1046
|
+
|
1009
|
1047
|
}
|
1010
|
1048
|
if(this.predialysis_evaluation!=null && this.predialysis_evaluation.id!=0){
|
|
1049
|
+ this.puncture_needle = "穿刺针:"
|
1011
|
1050
|
this.puncture_needle = this.puncture_needle + this.predialysis_evaluation.puncture_needle
|
1012
|
1051
|
this.blood_access_part_opera_id = this.blood_access_part_opera_id + this.getBloodAccess(this.predialysis_evaluation.blood_access_part_opera_id)
|
1013
|
1052
|
}
|
1014
|
1053
|
if(this.double_check !=null && this.double_check.id!=0){
|
1015
|
|
- console.log("双人核对",this.double_check)
|
|
1054
|
+
|
1016
|
1055
|
if(this.double_check.dialysis_item_desc.indexOf("透析器/灌流器")!=-1){
|
1017
|
1056
|
this.checkList.push("透析器/灌流器:"+this.prescription.dialyzer_perfusion_apparatus)
|
1018
|
|
- console.log("222222",this.checkList)
|
|
1057
|
+
|
1019
|
1058
|
}
|
1020
|
1059
|
if(this.double_check.dialysis_item_desc.indexOf("穿刺针")!=-1){
|
|
1060
|
+
|
1021
|
1061
|
this.checkList.push("穿刺针:"+(this.predialysis_evaluation.puncture_needle?this.predialysis_evaluation.puncture_needle:""))
|
1022
|
1062
|
}
|
1023
|
1063
|
if(this.double_check.dialysis_item_desc.indexOf("透析液配方:")!=-1){
|
|
@@ -1030,6 +1070,7 @@
|
1030
|
1070
|
this.checkList.push("钙:"+(this.prescription.calcium?this.prescription.calcium:""))
|
1031
|
1071
|
}
|
1032
|
1072
|
if(this.double_check.dialysis_parameter_desc.indexOf("透析模式:")!=-1){
|
|
1073
|
+
|
1033
|
1074
|
this.checkListOne.push("透析模式:"+this.getMode(this.prescription.mode_id))
|
1034
|
1075
|
}
|
1035
|
1076
|
if(this.double_check.dialysis_parameter_desc.indexOf("透析时长")!=-1){
|
|
@@ -1039,7 +1080,7 @@
|
1039
|
1080
|
this.checkListOne.push("目标超滤量:"+(this.prescription.target_ultrafiltration?this.prescription.target_ultrafiltration:""))
|
1040
|
1081
|
}
|
1041
|
1082
|
if(this.double_check.dialysis_parameter_desc.indexOf("抗凝剂")!=-1){
|
1042
|
|
- this.checkListOne.push("抗凝剂:"+this.getAnticoagulant(this.prescription.anticoagulant))
|
|
1083
|
+ this.checkListOne.push("抗凝剂:"+this.getAnticoagulant(this.prescription.anticoagulant?this.prescription.anticoagulant:""))
|
1043
|
1084
|
}
|
1044
|
1085
|
if(this.double_check.dialysis_parameter_desc.indexOf("首剂")!=-1){
|
1045
|
1086
|
this.checkListOne.push("首剂:"+(this.prescription.anticoagulant_shouji?this.prescription.anticoagulant_shouji:""))
|
|
@@ -1051,10 +1092,10 @@
|
1051
|
1092
|
this.checkListOne.push("总量:"+(this.prescription.anticoagulant_zongliang?this.prescription.anticoagulant_zongliang:""))
|
1052
|
1093
|
}
|
1053
|
1094
|
if(this.double_check.dialysis_parameter_desc.indexOf("置换液")!=-1){
|
1054
|
|
- this.checkListOne.push("置换液:"+(this.prescription.displace_liqui_part?this.prescription.displace_liqui_part:""))
|
|
1095
|
+ this.checkListOne.push("置换液:"+(this.getDisplace(this.prescription.displace_liqui_part)?this.getDisplace(this.prescription.displace_liqui_part):""))
|
1055
|
1096
|
}
|
1056
|
|
- if(this.double_check.dialysis_parameter_desc.indexOf("置换总量")!=-1){
|
1057
|
|
- this.checkListOne.push("置换总量:"+(this.prescription.replacement_total?this.prescription.replacement_total:""))
|
|
1097
|
+ if(this.double_check.dialysis_parameter_desc.indexOf("置换量")!=-1){
|
|
1098
|
+ this.checkListOne.push("置换量:"+(this.prescription.replacement_total?this.prescription.replacement_total:""))
|
1058
|
1099
|
}
|
1059
|
1100
|
if(this.double_check.dialysis_parameter_desc.indexOf("处方血流量")!=-1){
|
1060
|
1101
|
this.checkListOne.push("处方血流量:"+(this.prescription.blood_flow_volume?this.prescription.blood_flow_volume:""))
|
|
@@ -1062,6 +1103,10 @@
|
1062
|
1103
|
if(this.double_check.dialysis_parameter_desc.indexOf("透析液流量")!=-1){
|
1063
|
1104
|
this.checkListOne.push("透析液流量:"+(this.prescription.dialysate_flow?this.prescription.dialysate_flow:""))
|
1064
|
1105
|
}
|
|
1106
|
+
|
|
1107
|
+ if(this.double_check.dialysis_parameter_desc.indexOf("置换液总量")!=-1){
|
|
1108
|
+ this.checkListOne.push("置换液总量:"+(this.prescription.displace_liqui_value?this.prescription.displace_liqui_value:""))
|
|
1109
|
+ }
|
1065
|
1110
|
if(this.double_check.vascular_access_desc.indexOf("通路类型")!=-1){
|
1066
|
1111
|
this.checkListTwo.push("通路类型:"+this.getBloodAccess(this.predialysis_evaluation.blood_access_part_opera_id))
|
1067
|
1112
|
}
|