Browse Source

新分支

28169 1 year ago
parent
commit
a3da86df90
1 changed files with 32 additions and 4 deletions
  1. 32 4
      src/xt_pages/dialysis/details/consumable/dialysisParameter.vue

+ 32 - 4
src/xt_pages/dialysis/details/consumable/dialysisParameter.vue View File

@@ -1227,17 +1227,45 @@
1227 1227
              
1228 1228
               
1229 1229
               this.list[i].anticoagulant_one=""
1230
-              this.list[i].anticoagulant_one = (this.getAnticoagualnt(this.list[i].dialysis_solution.anticoagulant)) + "(" + (this.list[i].dialysis_solution.anticoagulant_shouji) +")" + "("+(this.list[i].dialysis_solution.anticoagulant_weichi) +")"+"("+(this.list[i].dialysis_solution.anticoagulant_zongliang)+")"
1230
+              if(this.list[i].dialysis_prescription.anticoagulant == ''){
1231
+                this.list[i].anticoagulant_one = (this.getAnticoagualnt(this.list[i].dialysis_solution.anticoagulant)) + "(" + (this.list[i].dialysis_solution.anticoagulant_shouji) +")" + "("+(this.list[i].dialysis_solution.anticoagulant_weichi) +")"+"("+(this.list[i].dialysis_solution.anticoagulant_zongliang)+")"
1232
+              }
1233
+
1234
+              if(this.list[i].dialysis_prescription.anticoagulant != ''){
1235
+                this.list[i].anticoagulant_one = (this.getAnticoagualnt(this.list[i].dialysis_prescription.anticoagulant)) + "(" + (this.list[i].dialysis_prescription.anticoagulant_shouji) +")" + "("+(this.list[i].dialysis_prescription.anticoagulant_weichi) +")"+"("+(this.list[i].dialysis_prescription.anticoagulant_zongliang)+")"
1236
+              }
1237
+             
1231 1238
              
1232 1239
               this.list[i].dialysis_time = this.list[i].dialysis_solution.dialysis_duration_hour?this.list[i].dialysis_solution.dialysis_duration_hour:"" + "时"+ this.list[i].dialysis_solution.dialysis_duration_minute?this.list[i].dialysis_solution.dialysis_duration_minute:"" + "分"
1233 1240
               if(this.list[i].dialysis_time == 0){
1234 1241
                this.list[i].dialysis_time = ""
1235 1242
               }
1236 1243
               this.list[i].device_type = this.list[i].assessment_befor_dislysis.machine_type
1244
+
1237 1245
               this.list[i].dialyzer_perfusion_apparatus = this.list[i].dialysis_solution.dialyzer_perfusion_apparatus
1238
-              this.list[i].dialysis_dialyszers = this.list[i].dialysis_solution.dialysis_dialyszers
1239
-              this.list[i].dialysis_irrigation = this.list[i].dialysis_solution.dialysis_irrigation
1240
-              this.list[i].displace_liqui_part = this.getDisplaceLiquiPart(this.list[i].dialysis_solution.displace_liqui_part)
1246
+              if(this.list[i].dialysis_prescription.dialysis_dialyszers == ""){
1247
+                this.list[i].dialysis_dialyszers = this.list[i].dialysis_solution.dialysis_dialyszers
1248
+              }
1249
+              if(this.list[i].dialysis_prescription.dialysis_dialyszers != ""){
1250
+                this.list[i].dialysis_dialyszers = this.list[i].dialysis_prescription.dialysis_dialyszers
1251
+              }
1252
+
1253
+              if(this.list[i].dialysis_prescription.dialysis_irrigation == ""){
1254
+                this.list[i].dialysis_irrigation = this.list[i].dialysis_solution.dialysis_irrigation
1255
+              }
1256
+              if(this.list[i].dialysis_prescription.dialysis_irrigation != ""){
1257
+                this.list[i].dialysis_irrigation = this.list[i].dialysis_prescription.dialysis_irrigation
1258
+              }
1259
+             
1260
+              if(this.list[i].dialysis_prescription.displace_liqui_part==""){
1261
+                this.list[i].displace_liqui_part = this.getDisplaceLiquiPart(this.list[i].dialysis_solution.displace_liqui_part)
1262
+              }
1263
+
1264
+              if(this.list[i].dialysis_prescription.displace_liqui_part!=""){
1265
+                this.list[i].displace_liqui_part = this.getDisplaceLiquiPart(this.list[i].dialysis_prescription.displace_liqui_part)
1266
+              }
1267
+            
1268
+           
1241 1269
               this.list[i].displace_liqui_value = this.list[i].dialysis_solution.displace_liqui_value? this.list[i].dialysis_solution.displace_liqui_value:""
1242 1270
               this.list[i].kalium = this.list[i].dialysis_solution.kalium?this.list[i].dialysis_solution.kalium:""
1243 1271
               this.list[i].sodium = this.list[i].dialysis_solution.sodium?this.list[i].dialysis_solution.sodium:""