XMLWAN il y a 2 ans
Parent
révision
2c32d690fc

+ 9 - 1
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue Voir le fichier

@@ -2204,6 +2204,10 @@
2204 2204
                 return
2205 2205
               }
2206 2206
             }
2207
+            if(this.dialysisPrescription.mode_id!=2 && this.dialysisPrescription.mode_id!=5 && this.dialysisPrescription.mode_id!=12){
2208
+                this.dialysisPrescription.displace_liqui_part = 0
2209
+                this.dialysisPrescription.displace_liqui_value = 0
2210
+            } 
2207 2211
           }
2208 2212
 
2209 2213
           this.is_pre = 1
@@ -2691,6 +2695,10 @@
2691 2695
                 return
2692 2696
               }
2693 2697
             }
2698
+            if(this.dialysisPrescription.mode_id!=2 && this.dialysisPrescription.mode_id!=5 && this.dialysisPrescription.mode_id!=12){
2699
+               this.dialysisPrescription.displace_liqui_part == 0 
2700
+              this.dialysisPrescription.displace_liqui_value == 0
2701
+            }
2694 2702
           }
2695 2703
 
2696 2704
           this.is_pre = 2
@@ -3289,7 +3297,7 @@
3289 3297
       },
3290 3298
       changePrescription(id) {
3291 3299
         console.log("id233223232323232323",id)
3292
-        if(id == 1){
3300
+        if(id != 2 && id!=5 && id!= 12){
3293 3301
           this.dialysisPrescription.displace_liqui_value = ""
3294 3302
           this.dialysisPrescription.displace_liqui_part = ""
3295 3303
         }

+ 18 - 2
src/xt_pages/qcd/treatmentControlAnalysis/components/TimePersonal.vue Voir le fichier

@@ -294,6 +294,12 @@ export default {
294 294
             if(modeIdCount[i].mode_id == 30){
295 295
                modeIdCount[i].mode_id = "血浆胆红素吸附+HP"
296 296
             }
297
+           if(modeIdCount[i].mode_id == 31){
298
+               modeIdCount[i].mode_id = "HPD"
299
+            }
300
+            if(modeIdCount[i].mode_id == 32){
301
+               modeIdCount[i].mode_id = "HDP"
302
+            }
297 303
           }
298 304
           this.modeIdCount = modeIdCount
299 305
           let dataInfo = {}
@@ -475,7 +481,14 @@ export default {
475 481
           patients[i].mode_id = "CVVHDF"
476 482
         }else if(patients[i].mode_id == 29){
477 483
           patients[i].mode_id = "PE"
484
+        }else if(patients[i].mode_id == 30){
485
+          patients[i].mode_id = "血浆胆红素吸附+HP"
486
+        }else if(patients[i].mode_id == 31){
487
+          patients[i].mode_id = "HPD"
488
+        }else if(patients[i].mode_id == 32){
489
+          patients[i].mode_id = "HDP"
478 490
         }
491
+
479 492
       }
480 493
     },
481 494
      querySearchAsync(keyword, cb) {
@@ -540,14 +553,17 @@ export default {
540 553
          this.DialysisData[i].CVVHD = this.getHdModeIdCount(this.DialysisData[i].patient_id,"CVVHD")
541 554
          this.DialysisData[i].CVVHDF = this.getHdModeIdCount(this.DialysisData[i].patient_id,"CVVHDF")
542 555
          this.DialysisData[i].PE = this.getHdModeIdCount(this.DialysisData[i].patient_id,"PE")
556
+         this.DialysisData[i].XUEHP = this.getHdModeIdCount(this.DialysisData[i].patient_id,"血浆胆红素吸附+HP")
557
+         this.DialysisData[i].HPD = this.getHdModeIdCount(this.DialysisData[i].patient_id,"HPD")
558
+          this.DialysisData[i].HDP = this.getHdModeIdCount(this.DialysisData[i].patient_id,"HDP")
543 559
 
544 560
          this.DialysisData[i].age = this.getAge(this.DialysisData[i].id_card_no)
545 561
          this.DialysisData[i].total_count = this.getDialysisCount(this.DialysisData[i].patient_id)
546 562
        }
547 563
        console.log("hhh2323323232",this.DialysisData)
548 564
        import('@/vendor/Export2Excel').then(excel => {
549
-        const tHeader = ['序号','姓名', '年龄', '透析号','HD','HDF','HD+HP','HP','HF','SCUF','IUF','HFHD','HFHD+HP','HFR','HDF+HP','CRRT','腹水回输','总数']
550
-        const filterVal = ['index','name', 'age', 'dialysis_no','HD','HDF','HDHP','HP','HF','SCUF','IUF','HFHD','HFHDHP','HFR','HDFHP','CRRT','OTR','total_count']
565
+        const tHeader = ['序号','姓名', '年龄', '透析号','HD','HDF','HD+HP','HP','HF','SCUF','IUF','HFHD','HFHD+HP','HFR','HDF+HP','CRRT','腹水回输','IUF+HD','UF','HD+','I-HDF','HD高通','CVVH','CVVHD','CVVHDF','PE','血浆胆红素吸附+HP','HPD','HDP','总数']
566
+        const filterVal = ['index','name', 'age', 'dialysis_no','HD','HDF','HDHP','HP','HF','SCUF','IUF','HFHD','HFHDHP','HFR','HDFHP','CRRT','OTR','IUF+HD','UF','HD+','I-HDF','HD高通','CVVH','CVVHD','CVVHDF','PE','XUEHP','HPD','HDP','total_count']
551 567
 
552 568
         const data = this.formatJson(filterVal, this.DialysisData)
553 569