Browse Source

Merge branch 'master' of http://git.shengws.com/csx/Vue_New

See999 4 years ago
parent
commit
4b02b4e191

File diff suppressed because it is too large
+ 1182 - 1167
src/store/modules/globalConfig.js


+ 182 - 144
src/xt_pages/dialysis/details/assessmentAfter.vue View File

@@ -95,9 +95,7 @@
95 95
 
96 96
         <li v-if="isShow('动脉管道')">
97 97
           <label for="xgtlcz">动脉管道: </label>
98
-          <span id="xgtlcz" class="content">{{
99
-            getArterialTubeName(this.record.arterial_tube)
100
-          }}</span>
98
+          <span id="xgtlcz" class="content">{{ getArterialTubeName(this.record.arterial_tube) }}</span>
101 99
         </li>
102 100
 
103 101
         <li v-if="isShow('透析期间进食')">
@@ -107,12 +105,29 @@
107 105
 
108 106
         <li v-if="isShow('回血')">
109 107
           <label>回血: </label>
110
-          <span class="content"  v-if="return_blood != '0'">{{ return_blood }}</span>
108
+          <span class="content" >{{ this.record.return_blood ? this.record.return_blood : ""  }}</span>
109
+          <span class="unit">{{ this.record.return_blood ? "ml" : "" }}</span>
111 110
         </li>
112 111
 
113 112
         <li v-if="isShow('补液量')">
114 113
           <label>补液量: </label>
115
-          <span class="content"  v-if="rehydration_volume != '0'">{{ rehydration_volume }}</span>
114
+          <span class="content" >{{ this.record.rehydration_volume ? this.record.rehydration_volume : ""  }}</span>
115
+          <span class="unit">{{ this.record.rehydration_volume ? "ml" : "" }}</span>
116
+        </li>
117
+
118
+        <li v-if="isShow('血流量')">
119
+          <label>血流量: </label>
120
+          <span id="xgtlcz" class="content">{{ getBloodFlowName(this.record.blood_flow) }}</span>
121
+        </li>
122
+
123
+        <li v-if="isShow('封管液配置')">
124
+          <label>封管液配置: </label>
125
+          <span class="content">{{ getSealingFluidDisposeName(this.record.sealing_fluid_dispose) }}</span>
126
+        </li>
127
+
128
+        <li v-if="isShow('封管液特殊') && getSealingFluidDisposeName(this.record.sealing_fluid_dispose) == '特殊'">
129
+          <label>封管液配置(特殊): </label>
130
+          <span class="content">{{ sealing_fluid_special }}</span>
116 131
         </li>
117 132
 
118 133
         <!-- <li style="height: 0.6rem;">
@@ -166,9 +181,7 @@
166 181
 
167 182
         <li v-if="isShow('内瘘管拔针后压迫止血时间')">
168 183
           <label for="ml">内瘘管拔针后压迫止血时间 : </label>
169
-          <span id="ml" class="content" v-if="this.record.hemostasis_minute"
170
-            >{{ this.record.hemostasis_minute }}min</span
171
-          >
184
+          <span id="ml" class="content" v-if="this.record.hemostasis_minute">{{ this.record.hemostasis_minute }}min</span>
172 185
           <span id="ml" class="content" v-else>-min</span>
173 186
         </li>
174 187
 
@@ -188,15 +201,14 @@
188 201
 
189 202
         <li v-if="isShow('透析中进食')">
190 203
           <label>透析中进食: </label>
191
-          <span class="content"  v-if="dialysis_during != '0'">{{ dialysis_during }}</span>
204
+          <span class="content" >{{ this.record.dialysis_during ? this.record.dialysis_during : ""  }}</span>
205
+          <span class="unit">{{ this.record.dialysis_during ? "ml" : "" }}</span>
192 206
         </li>
193 207
       </ul>
194 208
       <ul>
195 209
         <li v-if="isShow('透后称重')">
196 210
           <label>透后称重 : </label>
197
-          <span class="content" v-if="weight_after != '0'">{{
198
-            weight_after
199
-          }}</span>
211
+          <span class="content" v-if="weight_after != '0'">{{ weight_after }}</span>
200 212
           <span class="unit" v-if="weight_after != '0'">kg</span>
201 213
         </li>
202 214
         <li v-if="isShow('内瘘')">
@@ -288,14 +300,13 @@
288 300
         </li>
289 301
         <li v-if="isShow('中心静脉封管(肝素-V端)')">
290 302
           <label for="bzh">中心静脉封管(肝素-V端): </label>
291
-          <span class="content" id="tzjs">{{
292
-            this.record.cvc_v ? this.record.cvc_v : ""
293
-          }}</span>
303
+          <span class="content" id="tzjs">{{ this.record.cvc_v ? this.record.cvc_v : "" }}</span>
294 304
           <span class="unit">{{ this.record.cvc_v ? "ml" : "" }}</span>
295 305
         </li>
296 306
         <li v-if="isShow('出量')">
297 307
           <label>出量: </label>
298
-          <span class="content"  v-if="stroke_volume != '0'">{{ stroke_volume }}</span>
308
+          <span class="content" >{{ this.record.stroke_volume ? this.record.stroke_volume : ""  }}</span>
309
+          <span class="unit">{{ this.record.stroke_volume ? "ml" : "" }}</span>
299 310
         </li>
300 311
       </ul>
301 312
     </div>
@@ -308,6 +319,7 @@
308 319
 
309 320
 <script>
310 321
 import store from '@/store'
322
+import { getDataConfig } from '@/utils/data'
311 323
 
312 324
 export default {
313 325
   name: 'DialysisPrescription',
@@ -498,139 +510,145 @@ export default {
498 510
           return '-'
499 511
           break
500 512
       }
501
-    }
502
-  },
503
-  breathing_rate: function() {
504
-    if (this.record.id == 0) {
505
-      return '-'
506
-    }
507
-    return this.record.breathing_rate
508
-  },
509
-  temperature: function() {
510
-    if (this.record.id == 0) {
511
-      return '-'
512
-    }
513
-    return this.record.temperature
514
-  },
515
-  pulse_frequency: function() {
516
-    if (this.record.id == 0) {
517
-      return '-'
518
-    }
519
-    return this.record.pulse_frequency
520
-  },
521
-  actual_treatment_hour: function() {
522
-    if (this.record.id == 0) {
523
-      return '-'
524
-    }
525
-    return this.record.actual_treatment_hour
526
-  },
527
-  actual_treatment_minute: function() {
528
-    if (this.record.id == 0) {
529
-      return '-'
530
-    }
531
-    return this.record.actual_treatment_minute
532
-  },
513
+    },
514
+    breathing_rate: function() {
515
+      if (this.record.id == 0) {
516
+        return '-'
517
+      }
518
+      return this.record.breathing_rate
519
+    },
520
+    temperature: function() {
521
+      if (this.record.id == 0) {
522
+        return '-'
523
+      }
524
+      return this.record.temperature
525
+    },
526
+    pulse_frequency: function() {
527
+      if (this.record.id == 0) {
528
+        return '-'
529
+      }
530
+      return this.record.pulse_frequency
531
+    },
532
+    actual_treatment_hour: function() {
533
+      if (this.record.id == 0) {
534
+        return '-'
535
+      }
536
+      return this.record.actual_treatment_hour
537
+    },
538
+    actual_treatment_minute: function() {
539
+      if (this.record.id == 0) {
540
+        return '-'
541
+      }
542
+      return this.record.actual_treatment_minute
543
+    },
533 544
 
534
-  observation_content_other: function() {
535
-    if (this.record.id == 0) {
536
-      return '-'
537
-    }
538
-    return this.record.observation_content_other
539
-  },
540
-  observation_content: function() {
541
-    if (this.record.id == 0) {
542
-      return '-'
543
-    }
544
-    return this.record.observation_content
545
-  },
546
-  complication: function() {
547
-    if (this.record.id == 0) {
548
-      return '-'
549
-    }
550
-    return this.record.complication
551
-  },
545
+    observation_content_other: function() {
546
+      if (this.record.id == 0) {
547
+        return '-'
548
+      }
549
+      return this.record.observation_content_other
550
+    },
551
+    observation_content: function() {
552
+      if (this.record.id == 0) {
553
+        return '-'
554
+      }
555
+      return this.record.observation_content
556
+    },
557
+    complication: function() {
558
+      if (this.record.id == 0) {
559
+        return '-'
560
+      }
561
+      return this.record.complication
562
+    },
552 563
 
553
-  temperature: function() {
554
-    if (this.record.id == 0) {
555
-      return '-'
556
-    }
557
-    return this.record.temperature
558
-  },
559
-  pulse_frequency: function() {
560
-    if (this.record.id == 0) {
561
-      return '-'
562
-    }
563
-    return this.record.pulse_frequency
564
-  },
565
-  actual_treatment_hour: function() {
566
-    if (this.record.id == 0) {
567
-      return '-'
568
-    }
569
-    return this.record.actual_treatment_hour
570
-  },
571
-  actual_treatment_minute: function() {
572
-    if (this.record.id == 0) {
573
-      return '-'
574
-    }
575
-    return this.record.actual_treatment_minute
576
-  },
577
-  dialysis_intakes: function() {
578
-    if (this.record.id == 0) {
579
-      return '-'
580
-    }
581
-    return this.record.dialysis_intakes
582
-  },
583
-  observation_content_other: function() {
584
-    if (this.record.id == 0) {
585
-      return '-'
586
-    }
587
-    return this.record.observation_content_other
588
-  },
589
-  observation_content: function() {
590
-    if (this.record.id == 0) {
591
-      return '-'
592
-    }
593
-    return this.record.observation_content
594
-  },
595
-  complication: function() {
596
-    if (this.record.id == 0) {
597
-      return '-'
598
-    }
599
-    return this.record.complication
600
-  },
564
+    temperature: function() {
565
+      if (this.record.id == 0) {
566
+        return '-'
567
+      }
568
+      return this.record.temperature
569
+    },
570
+    pulse_frequency: function() {
571
+      if (this.record.id == 0) {
572
+        return '-'
573
+      }
574
+      return this.record.pulse_frequency
575
+    },
576
+    actual_treatment_hour: function() {
577
+      if (this.record.id == 0) {
578
+        return '-'
579
+      }
580
+      return this.record.actual_treatment_hour
581
+    },
582
+    actual_treatment_minute: function() {
583
+      if (this.record.id == 0) {
584
+        return '-'
585
+      }
586
+      return this.record.actual_treatment_minute
587
+    },
588
+    dialysis_intakes: function() {
589
+      if (this.record.id == 0) {
590
+        return '-'
591
+      }
592
+      return this.record.dialysis_intakes
593
+    },
594
+    observation_content_other: function() {
595
+      if (this.record.id == 0) {
596
+        return '-'
597
+      }
598
+      return this.record.observation_content_other
599
+    },
600
+    observation_content: function() {
601
+      if (this.record.id == 0) {
602
+        return '-'
603
+      }
604
+      return this.record.observation_content
605
+    },
606
+    complication: function() {
607
+      if (this.record.id == 0) {
608
+        return '-'
609
+      }
610
+      return this.record.complication
611
+    },
601 612
 
602
-  remark: function() {
603
-    if (this.record.id == 0) {
604
-      return ''
605
-    }
606
-    return this.record.remark
607
-  },
608
-  in_advance_minute: function() {
609
-    if (this.record == null || this.record.id == '') {
610
-      return ''
611
-    }
612
-    return this.record.in_advance_minute
613
-  },
614
-  in_advance_reason: function() {
615
-    if (this.record == null || this.record.id == '') {
616
-      return ''
617
-    }
618
-    return (
619
-      this.record.in_advance_reason + ',' + this.record.in_advance_reason_other
620
-    )
621
-  },
622
-  hemostasis_minute: function() {
623
-    if (this.record == null || this.record.id == '') {
624
-      return ''
625
-    }
613
+    remark: function() {
614
+      if (this.record.id == 0) {
615
+        return ''
616
+      }
617
+      return this.record.remark
618
+    },
619
+    sealing_fluid_special: function() {
620
+      if (this.record.id == 0) {
621
+        return ''
622
+      }
623
+      return this.record.sealing_fluid_special
624
+    },
625
+    in_advance_minute: function() {
626
+      if (this.record == null || this.record.id == '') {
627
+        return ''
628
+      }
629
+      return this.record.in_advance_minute
630
+    },
631
+    in_advance_reason: function() {
632
+      if (this.record == null || this.record.id == '') {
633
+        return ''
634
+      }
635
+      return (
636
+        this.record.in_advance_reason + ',' + this.record.in_advance_reason_other
637
+      )
638
+    },
639
+    hemostasis_minute: function() {
640
+      if (this.record == null || this.record.id == '') {
641
+        return ''
642
+      }
626 643
 
627
-    return this.record.hemostasis_minute
628
-  },
629
-  in_advance_reason_other: function() {
630
-    if (this.record == null || this.record.id == '') {
631
-      return ''
644
+      return this.record.hemostasis_minute
645
+    },
646
+    in_advance_reason_other: function() {
647
+      if (this.record == null || this.record.id == '') {
648
+        return ''
649
+      }
650
+      return this.record.in_advance_reason_other
632 651
     }
633
-    return this.record.in_advance_reason_other
634 652
   },
635 653
   methods: {
636 654
     getInternal: function() {
@@ -681,6 +699,16 @@ export default {
681 699
           break
682 700
       }
683 701
     },
702
+    getSealingFluidDisposeName: function(id) {
703
+      var sealing_fluid_dispose_arr = getDataConfig('hemodialysis', 'sealing_fluid_dispose')
704
+      var sealing_fluid_dispose_name = ''
705
+      for (let i = 0; i < sealing_fluid_dispose_arr.length; i++) {
706
+        if (sealing_fluid_dispose_arr[i].id == id) {
707
+          sealing_fluid_dispose_name = sealing_fluid_dispose_arr[i].name
708
+        }
709
+      }
710
+      return sealing_fluid_dispose_name
711
+    },
684 712
     getDisequilibriumSyndrome: function(id) {
685 713
       var disequilibrium_syndrome = this.$store.getters.disequilibrium_syndrome
686 714
       var disequilibriumSyndromeName = ''
@@ -713,6 +741,16 @@ export default {
713 741
       }
714 742
       return arterialTubeName
715 743
     },
744
+    getBloodFlowName: function(id) {
745
+      var BloodFloowArr = getDataConfig('hemodialysis', 'blood_flow')
746
+      var BloodFloowArrName = ''
747
+      for (let i = 0; i < BloodFloowArr.length; i++) {
748
+        if (BloodFloowArr[i].id == id) {
749
+          BloodFloowArrName = BloodFloowArr[i].name
750
+        }
751
+      }
752
+      return BloodFloowArrName
753
+    },
716 754
     getIntravenousTubeName: function(id) {
717 755
       var intravenous_tube = this.$store.getters.intravenous_tube
718 756
       var intravenousTubeName = ''

+ 79 - 92
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue View File

@@ -369,6 +369,29 @@
369 369
           </el-form-item>
370 370
         </el-col>
371 371
 
372
+        <el-col :span="8" v-if="isShow('血流量')">
373
+          <el-form-item label="血流量: ">
374
+            <el-select v-model="form.blood_flow">
375
+              <el-option :key="0" label="请选择" :value="0"></el-option>
376
+              <el-option v-for="item in this.bloodFlowOptions" :label="item.name" :value="item.id" :key="item.id"></el-option>
377
+            </el-select>
378
+          </el-form-item>
379
+        </el-col>
380
+
381
+        <el-col :span="8" v-if="isShow('封管液配置')">
382
+          <el-form-item label="封管液配置:">
383
+            <el-select v-model="form.sealing_fluid_dispose">
384
+              <el-option :key="0" label="请选择" :value="0"></el-option>
385
+              <el-option v-for="item in this.sealingFluidDisposeOptions" :label="item.name" :value="item.id" :key="item.id"></el-option>
386
+            </el-select>
387
+          </el-form-item>
388
+        </el-col>
389
+
390
+        <el-col :span="8" v-if="sealing_fluid_special_name == '特殊'&&isShow('封管液特殊')">
391
+          <el-form-item label="封管液配置(特殊): ">
392
+            <el-input v-model="form.sealing_fluid_special"></el-input>
393
+          </el-form-item>
394
+        </el-col>
372 395
 
373 396
         <!-- </el-row>
374 397
 
@@ -602,9 +625,12 @@ export default {
602 625
       patientGoseOptions: [],
603 626
       observationContentOptions: [],
604 627
       channels: [],
628
+      bloodFlowOptions: [],
629
+      sealingFluidDisposeOptions: [],
605 630
 
606 631
       isVisibiltyForCruorDialog: false,
607 632
       dialogCruorTitle: '凝血',
633
+      sealing_fluid_special_name: '',
608 634
 
609 635
       InnerDialogProps: {
610 636
         values: [],
@@ -664,11 +690,23 @@ export default {
664 690
         return_blood: '',
665 691
         rehydration_volume: '',
666 692
         dialysis_during: '',
667
-        stroke_volume: ''
693
+        stroke_volume: '',
694
+        blood_flow: '',
695
+        sealing_fluid_dispose: '',
696
+        sealing_fluid_special: ''
668 697
       }
669 698
     }
670 699
   },
671 700
   watch: {
701
+    'form.sealing_fluid_dispose': function() {
702
+      var tempsealingFluidDisposeOptions = getDataConfig('hemodialysis', 'sealing_fluid_dispose')
703
+      for (let i = 0; i < tempsealingFluidDisposeOptions.length; i++) {
704
+        if (tempsealingFluidDisposeOptions[i].id == this.form.sealing_fluid_dispose) {
705
+          this.sealing_fluid_special_name = tempsealingFluidDisposeOptions[i].name
706
+        }
707
+      }
708
+      return this.sealing_fluid_special_name
709
+    },
672 710
     'assessment_after_dislysis.id': function() {
673 711
       if (this.assessment_after_dislysis.id > 0) {
674 712
         for (var index in this.form) {
@@ -729,6 +767,12 @@ export default {
729 767
         if (this.assessment_after_dislysis['stroke_volume'] == 0) {
730 768
           this.form['stroke_volume'] = ''
731 769
         }
770
+        if (this.assessment_after_dislysis['blood_flow'] == 0) {
771
+          this.form['blood_flow'] = ''
772
+        }
773
+        if (this.assessment_after_dislysis['sealing_fluid_dispose'] == 0) {
774
+          this.form['sealing_fluid_dispose'] = ''
775
+        }
732 776
         this.actualTreatmentHourShow = new Date(
733 777
           2018,
734 778
           1,
@@ -785,108 +829,47 @@ export default {
785 829
       }
786 830
 
787 831
       const data = {}
788
-      data['weight_after'] = this.form.weight_after
789
-        ? parseFloat(this.form.weight_after)
790
-        : 0
791
-      data['weight_loss'] = this.form.weight_loss
792
-        ? parseFloat(this.form.weight_loss)
793
-        : 0
794
-      data['temperature'] = this.form.temperature
795
-        ? parseFloat(this.form.temperature)
796
-        : 0
797
-      data['breathing_rate'] = this.form.temperature
798
-        ? parseFloat(this.form.breathing_rate)
799
-        : 0
800
-      data['systolic_blood_pressure'] = this.form.systolic_blood_pressure
801
-        ? parseFloat(this.form.systolic_blood_pressure)
802
-        : 0
803
-      data['diastolic_blood_pressure'] = this.form.diastolic_blood_pressure
804
-        ? parseFloat(this.form.diastolic_blood_pressure)
805
-        : 0
806
-      data['pulse_frequency'] = this.form.pulse_frequency
807
-        ? parseFloat(this.form.pulse_frequency)
808
-        : 0
809
-      data['actual_ultrafiltration'] = this.form.actual_ultrafiltration
810
-        ? parseFloat(this.form.actual_ultrafiltration)
811
-        : 0
812
-      data['actual_displacement'] = this.form.actual_displacement
813
-        ? parseFloat(this.form.actual_displacement)
814
-        : 0
815
-      data['actual_treatment_hour'] = this.form.actual_treatment_hour
816
-        ? parseFloat(this.form.actual_treatment_hour)
817
-        : 0
818
-      data['actual_treatment_minute'] = this.form.actual_treatment_minute
819
-        ? parseFloat(this.form.actual_treatment_minute)
820
-        : 0
832
+      data['weight_after'] = this.form.weight_after ? parseFloat(this.form.weight_after) : 0
833
+      data['weight_loss'] = this.form.weight_loss ? parseFloat(this.form.weight_loss) : 0
834
+      data['temperature'] = this.form.temperature ? parseFloat(this.form.temperature) : 0
835
+      data['breathing_rate'] = this.form.temperature ? parseFloat(this.form.breathing_rate) : 0
836
+      data['systolic_blood_pressure'] = this.form.systolic_blood_pressure ? parseFloat(this.form.systolic_blood_pressure) : 0
837
+      data['diastolic_blood_pressure'] = this.form.diastolic_blood_pressure ? parseFloat(this.form.diastolic_blood_pressure) : 0
838
+      data['pulse_frequency'] = this.form.pulse_frequency ? parseFloat(this.form.pulse_frequency) : 0
839
+      data['actual_ultrafiltration'] = this.form.actual_ultrafiltration ? parseFloat(this.form.actual_ultrafiltration) : 0
840
+      data['actual_displacement'] = this.form.actual_displacement ? parseFloat(this.form.actual_displacement) : 0
841
+      data['actual_treatment_hour'] = this.form.actual_treatment_hour ? parseFloat(this.form.actual_treatment_hour) : 0
842
+      data['actual_treatment_minute'] = this.form.actual_treatment_minute ? parseFloat(this.form.actual_treatment_minute) : 0
821 843
       data['cruor'] = this.form.cruor
822 844
       data['symptom_after_dialysis'] = this.form.symptom_after_dialysis
823
-      data['dialysis_intakes'] = this.form.dialysis_intakes
824
-        ? parseFloat(this.form.dialysis_intakes)
825
-        : 0
845
+      data['dialysis_intakes'] = this.form.dialysis_intakes ? parseFloat(this.form.dialysis_intakes) : 0
826 846
       data['internal_fistula'] = this.form.internal_fistula
827
-      data['blood_access_part_id'] = this.form.blood_access_part_id
828
-        ? parseFloat(this.form.blood_access_part_id)
829
-        : 0
830
-      data['blood_access_part_opera_id'] = this.form.blood_access_part_opera_id
831
-        ? parseFloat(this.form.blood_access_part_opera_id)
832
-        : 0
847
+      data['blood_access_part_id'] = this.form.blood_access_part_id ? parseFloat(this.form.blood_access_part_id) : 0
848
+      data['blood_access_part_opera_id'] = this.form.blood_access_part_opera_id ? parseFloat(this.form.blood_access_part_opera_id) : 0
833 849
       data['catheter'] = this.form.catheter
834 850
       data['complication'] = this.form.complication
835
-      data['puncture_point_oozing_blood'] = this.form
836
-        .puncture_point_oozing_blood
837
-        ? parseFloat(this.form.puncture_point_oozing_blood)
838
-        : 0
839
-      data['puncture_point_haematoma'] = this.form.puncture_point_haematoma
840
-        ? parseFloat(this.form.puncture_point_haematoma)
841
-        : 0
842
-      data['internal_fistula_tremor_ac'] = this.form.internal_fistula_tremor_ac
843
-        ? parseFloat(this.form.internal_fistula_tremor_ac)
844
-        : 0
845
-      data['patient_gose'] = this.form.patient_gose
846
-        ? parseFloat(this.form.patient_gose)
847
-        : 0
851
+      data['puncture_point_oozing_blood'] = this.form.puncture_point_oozing_blood ? parseFloat(this.form.puncture_point_oozing_blood) : 0
852
+      data['puncture_point_haematoma'] = this.form.puncture_point_haematoma ? parseFloat(this.form.puncture_point_haematoma) : 0
853
+      data['internal_fistula_tremor_ac'] = this.form.internal_fistula_tremor_ac ? parseFloat(this.form.internal_fistula_tremor_ac) : 0
854
+      data['patient_gose'] = this.form.patient_gose ? parseFloat(this.form.patient_gose) : 0
848 855
       data['inpatient_department'] = this.form.inpatient_department
849 856
       data['observation_content'] = this.form.observation_content
850 857
       data['observation_content_other'] = this.form.observation_content_other
851 858
       data['remark'] = this.form.remark
852
-      data['dialysis_order_id'] = this.form.dialysis_order_id
853
-        ? parseFloat(this.form.dialysis_order_id)
854
-        : 0
855
-      data['dialysis_process'] = this.form.dialysis_process
856
-        ? parseFloat(this.form.dialysis_process)
857
-        : 0
858
-      data['in_advance_minute'] = this.form.in_advance_minute
859
-        ? parseFloat(this.form.in_advance_minute)
860
-        : 0
859
+      data['dialysis_order_id'] = this.form.dialysis_order_id ? parseFloat(this.form.dialysis_order_id) : 0
860
+      data['dialysis_process'] = this.form.dialysis_process ? parseFloat(this.form.dialysis_process) : 0
861
+      data['in_advance_minute'] = this.form.in_advance_minute ? parseFloat(this.form.in_advance_minute) : 0
861 862
       data['in_advance_reason_other'] = this.form.in_advance_reason_other
862 863
       data['in_advance_reason'] = this.form.in_advance_reason
863
-      data['hemostasis_minute'] = this.form.hemostasis_minute
864
-        ? parseFloat(this.form.hemostasis_minute)
865
-        : 0
866
-      data['hemostasis_opera'] = this.form.hemostasis_opera
867
-        ? parseFloat(this.form.hemostasis_opera)
868
-        : 0
869
-      data['tremor_noise'] = this.form.tremor_noise
870
-        ? parseFloat(this.form.tremor_noise)
871
-        : 0
872
-      data['disequilibrium_syndrome'] = this.form.disequilibrium_syndrome
873
-        ? parseFloat(this.form.disequilibrium_syndrome)
874
-        : 0
875
-      data[
876
-        'disequilibrium_syndrome_option'
877
-      ] = this.form.disequilibrium_syndrome_option
878
-      data['arterial_tube'] = this.form.arterial_tube
879
-        ? parseFloat(this.form.arterial_tube)
880
-        : 0
881
-      data['intravenous_tube'] = this.form.intravenous_tube
882
-        ? parseFloat(this.form.intravenous_tube)
883
-        : 0
864
+      data['hemostasis_minute'] = this.form.hemostasis_minute ? parseFloat(this.form.hemostasis_minute) : 0
865
+      data['hemostasis_opera'] = this.form.hemostasis_opera ? parseFloat(this.form.hemostasis_opera) : 0
866
+      data['tremor_noise'] = this.form.tremor_noise ? parseFloat(this.form.tremor_noise) : 0
867
+      data['disequilibrium_syndrome'] = this.form.disequilibrium_syndrome ? parseFloat(this.form.disequilibrium_syndrome) : 0
868
+      data['disequilibrium_syndrome_option'] = this.form.disequilibrium_syndrome_option
869
+      data['arterial_tube'] = this.form.arterial_tube ? parseFloat(this.form.arterial_tube) : 0
870
+      data['intravenous_tube'] = this.form.intravenous_tube ? parseFloat(this.form.intravenous_tube) : 0
884 871
       data['dialysis_intakes_unit'] = this.form.dialysis_intakes_unit
885
-
886
-      data['dialyzer'] = this.form.dialyzer
887
-        ? parseFloat(this.form.dialyzer)
888
-        : 0
889
-
872
+      data['dialyzer'] = this.form.dialyzer ? parseFloat(this.form.dialyzer) : 0
890 873
       data['is_eat'] = this.form.is_eat ? parseFloat(this.form.is_eat) : 0
891 874
       data['cvc_a'] = this.form.cvc_a ? parseFloat(this.form.cvc_a) : 0
892 875
       data['cvc_v'] = this.form.cvc_v ? parseFloat(this.form.cvc_v) : 0
@@ -894,6 +877,9 @@ export default {
894 877
       data['rehydration_volume'] = this.form.rehydration_volume ? parseFloat(this.form.rehydration_volume) : 0
895 878
       data['dialysis_during'] = this.form.dialysis_during ? parseFloat(this.form.dialysis_during) : 0
896 879
       data['stroke_volume'] = this.form.stroke_volume ? parseFloat(this.form.stroke_volume) : 0
880
+      data['blood_flow'] = this.form.blood_flow ? parseFloat(this.form.blood_flow) : 0
881
+      data['sealing_fluid_dispose'] = this.form.sealing_fluid_dispose ? parseFloat(this.form.sealing_fluid_dispose) : 0
882
+      data['sealing_fluid_special'] = this.form.sealing_fluid_special
897 883
       console.log('data', data)
898 884
       postAssessmentAfterDislysis(ParamsQuery, data)
899 885
         .then(response => {
@@ -1125,10 +1111,11 @@ export default {
1125 1111
     this.vascularAccessDescOptions = getDataConfig('hemodialysis', 'vascular_access_desc')
1126 1112
     this.catheterOptions = getDataConfig('hemodialysis', 'catheter')
1127 1113
     this.complicationOptions = getDataConfig('hemodialysis', 'complication')
1114
+    this.bloodFlowOptions = getDataConfig('hemodialysis', 'blood_flow')
1115
+    this.sealingFluidDisposeOptions = getDataConfig('hemodialysis', 'sealing_fluid_dispose')
1128 1116
     this.internalFistulaTremorAcOptions = this.$store.getters.internal_fistula_tremor_ac
1129 1117
     this.patientGoseOptions = this.$store.getters.patient_gose
1130 1118
     this.observationContentOptions = this.$store.getters.observation_content
1131
-    console.log('----', this.$store.getters.observation_content)
1132 1119
     this.template_id = this.$store.getters.xt_user.template_info.template_id
1133 1120
     this.channels = this.$store.getters.channels
1134 1121
     var date = this.$route.query && this.$route.query.date