|
@@ -20,7 +20,8 @@
|
20
|
20
|
:editable="false" :clearable="false" style="width: 196px;margin-right:10px;" type="date"
|
21
|
21
|
format="yyyy-MM-dd"
|
22
|
22
|
value-format="yyyy-MM-dd"
|
23
|
|
- placeholder="选择日期时间" align="right"></el-date-picker>
|
|
23
|
+ placeholder="选择日期时间" align="right"
|
|
24
|
+ :picker-options="pickerOptions"></el-date-picker>
|
24
|
25
|
<el-input size="small" style="width: 180px;" @keyup.enter.native='searchAction' v-model.trim="search_input"
|
25
|
26
|
class="filter-item" v-model="query.keywords"/>
|
26
|
27
|
<el-button size="small" class="filter-item" type="primary" icon="el-icon-search" @click="search">搜索</el-button>
|
|
@@ -46,8 +47,8 @@
|
46
|
47
|
<el-button size="small" icon="el-icon-printer" @click="toSign" type="primary">标签打印</el-button>
|
47
|
48
|
<el-button size="small" icon="el-icon-printer" @click="printAction" type="primary">标签打印设置</el-button>
|
48
|
49
|
|
49
|
|
- <el-button size="small" icon="el-icon-printer" @click="exportList" type="primary">导出</el-button>
|
50
|
|
- <el-button size="small" icon="el-icon-printer" @click="toPrint" type="primary">打印</el-button>
|
|
50
|
+ <el-button size="small" @click="exportList" type="primary">导出</el-button>
|
|
51
|
+ <el-button size="small" @click="toPrint" icon="el-icon-printer" type="primary">打印</el-button>
|
51
|
52
|
<el-button size="small" type="primary" @click="statistics">统计表</el-button>
|
52
|
53
|
</div>
|
53
|
54
|
</div>
|
|
@@ -198,13 +199,19 @@
|
198
|
199
|
|
199
|
200
|
<el-table-column align="center" label="封管液" v-if="dialysisSett.sealing_fluid_dispose == 1">
|
200
|
201
|
<template slot-scope="scope">
|
201
|
|
- <span v-if="scope.row.xt_assesment_after_dislysis.sealing_fluid_dispose>0">{{scope.row.xt_assesment_after_dislysis.sealing_fluid_dispose}} </span>
|
|
202
|
+ <span>{{scope.row.xt_assesment_after_dislysis.sealing_fluid_dispose}} </span>
|
202
|
203
|
</template>
|
203
|
204
|
</el-table-column>
|
204
|
205
|
|
205
|
206
|
<el-table-column align="center" label="葡萄糖" v-if="dialysisSett.glucose==1">
|
206
|
207
|
<template slot-scope="scope">
|
207
|
|
- <span v-if="scope.row.dialysis_prescription.amylaceum>0">{{scope.row.dialysis_prescription.amylaceum}} </span>
|
|
208
|
+ <span>{{scope.row.dialysis_prescription.amylaceum?scope.row.dialysis_prescription.amylaceum:""}} </span>
|
|
209
|
+ </template>
|
|
210
|
+ </el-table-column>
|
|
211
|
+
|
|
212
|
+ <el-table-column align="center" label="血流量" v-if="dialysisSett.blood_flow_volume==1">
|
|
213
|
+ <template slot-scope="scope">
|
|
214
|
+ <span>{{scope.row.dialysis_prescription.blood_flow_volume?scope.row.dialysis_prescription.blood_flow_volume:""}} </span>
|
208
|
215
|
</template>
|
209
|
216
|
</el-table-column>
|
210
|
217
|
</el-table>
|
|
@@ -342,8 +349,8 @@
|
342
|
349
|
:value="item.id">
|
343
|
350
|
</el-option>
|
344
|
351
|
</el-select>
|
345
|
|
- <el-button size="small" icon="el-icon-printer" @click="toPrintOne" type="primary">打印</el-button>
|
346
|
|
- <el-button size="small" icon="el-icon-printer" @click="exportListOne" type="primary">导出</el-button>
|
|
352
|
+ <el-button size="small" @click="toPrintOne" icon="el-icon-printer" type="primary">打印</el-button>
|
|
353
|
+ <el-button size="small" @click="exportListOne" type="primary">导出</el-button>
|
347
|
354
|
</div>
|
348
|
355
|
<el-table
|
349
|
356
|
:data="tableList"
|
|
@@ -497,7 +504,28 @@
|
497
|
504
|
anticoagulant_zongliang: false,
|
498
|
505
|
doctor_advice: false,
|
499
|
506
|
displace_liqui_part_option:[],
|
500
|
|
- ids:""
|
|
507
|
+ ids:"",
|
|
508
|
+ form: {
|
|
509
|
+ id: 0,
|
|
510
|
+ prescription_status: '',
|
|
511
|
+ week: '',
|
|
512
|
+ name: '',
|
|
513
|
+ zone: '',
|
|
514
|
+ classes: '',
|
|
515
|
+ number: '',
|
|
516
|
+ mode: '',
|
|
517
|
+ dialyzers: '',
|
|
518
|
+ perfusion_apparatus: '',
|
|
519
|
+ anticoagulant: '',
|
|
520
|
+ anticoagulant_zongliang: '',
|
|
521
|
+ doctor_advice: ''
|
|
522
|
+ },
|
|
523
|
+ pickerOptions:{ //禁用当前日期之前的日期
|
|
524
|
+ disabledDate(v) {
|
|
525
|
+ //Date.now()是javascript中的内置函数,它返回自1970年1月1日00:00:00 UTC以来经过的毫秒数。
|
|
526
|
+ return v.getTime() < new Date().getTime() - 86400000;
|
|
527
|
+ },
|
|
528
|
+ },
|
501
|
529
|
}
|
502
|
530
|
},
|
503
|
531
|
created() {
|
|
@@ -642,21 +670,7 @@
|
642
|
670
|
if(response.data.state == 1){
|
643
|
671
|
this.startdialogVisible = true
|
644
|
672
|
var list = response.data.data.list
|
645
|
|
- // console.log("list232323223222wid",list)
|
646
|
|
- var total = 0
|
647
|
|
- var total_one = 0
|
648
|
|
- var total_two = 0
|
649
|
|
- var total_three = 0
|
650
|
|
- var total_four = 0
|
651
|
|
- var total_five = 0
|
652
|
|
- var total_six = 0
|
653
|
|
- var total_seven =0
|
654
|
|
- var total_eight = 0
|
655
|
|
- var total_night =0
|
656
|
|
- var total_ten = 0
|
657
|
|
- var total_elven = 0
|
658
|
|
- var total_twenty = 0
|
659
|
|
-
|
|
673
|
+ var anticoagulantList = []
|
660
|
674
|
if(list!=null && list.length>0){
|
661
|
675
|
for(let i=0;i<list.length;i++){
|
662
|
676
|
list[i].dialysis_dialyszers_arr = []
|
|
@@ -671,53 +685,86 @@
|
671
|
685
|
if(list[i].dialysis_prescription.dialysis_irrigation!=""){
|
672
|
686
|
list[i].dialysis_irrigation_arr = list[i].dialysis_prescription.dialysis_irrigation.split(",")
|
673
|
687
|
}
|
|
688
|
+
|
|
689
|
+
|
674
|
690
|
if(list[i].dialysis_prescription.anticoagulant == 1){
|
675
|
|
- total += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
691
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
676
|
692
|
}
|
677
|
693
|
if(list[i].dialysis_prescription.anticoagulant == 2){
|
678
|
|
- total_one += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
694
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
679
|
695
|
}
|
680
|
696
|
if(list[i].dialysis_prescription.anticoagulant == 3){
|
681
|
|
- total_two += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
697
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
682
|
698
|
}
|
683
|
699
|
if(list[i].dialysis_prescription.anticoagulant == 4){
|
684
|
|
- total_three += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
700
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
685
|
701
|
}
|
686
|
702
|
if(list[i].dialysis_prescription.anticoagulant == 5){
|
687
|
|
- total_four += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
703
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
688
|
704
|
}
|
689
|
705
|
if(list[i].dialysis_prescription.anticoagulant == 6){
|
690
|
|
- total_five += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
706
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
691
|
707
|
}
|
692
|
708
|
if(list[i].dialysis_prescription.anticoagulant == 7){
|
693
|
|
- total_six += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
709
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
694
|
710
|
}
|
695
|
711
|
if(list[i].dialysis_prescription.anticoagulant == 8){
|
696
|
|
- total_seven += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
712
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
697
|
713
|
}
|
698
|
714
|
if(list[i].dialysis_prescription.anticoagulant == 9){
|
699
|
|
- total_eight += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
715
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
700
|
716
|
}
|
701
|
717
|
if(list[i].dialysis_prescription.anticoagulant == 10){
|
702
|
|
- total_night += list[i].dialysis_prescription.anticoagulant_zongliang
|
|
718
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
703
|
719
|
}
|
704
|
720
|
if(list[i].dialysis_prescription.anticoagulant == 11){
|
705
|
|
- total_ten+= list[i].dialysis_prescription.anticoagulant_zongliang
|
|
721
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
706
|
722
|
}
|
707
|
723
|
if(list[i].dialysis_prescription.anticoagulant == 12){
|
708
|
|
- total_elven+= list[i].dialysis_prescription.anticoagulant_zongliang
|
|
724
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
709
|
725
|
}
|
710
|
|
- if(list[i].dialysis_prescription.anticoagulant == 13){
|
711
|
|
- total_twenty+= list[i].dialysis_prescription.anticoagulant_zongliang
|
|
726
|
+ if(list[i].dialysis_prescription.anticoagulant == 13){
|
|
727
|
+ anticoagulantList.push(list[i].dialysis_prescription)
|
712
|
728
|
}
|
713
|
729
|
}
|
714
|
730
|
}
|
|
731
|
+ console.log("anticoagulantList",anticoagulantList)
|
|
732
|
+ this.tableList = []
|
|
733
|
+ if(anticoagulantList!=null && anticoagulantList.length > 0){
|
|
734
|
+ let dataInfoOne = {}
|
|
735
|
+ anticoagulantList.forEach((item, index) => {
|
|
736
|
+ let { anticoagulant } = item
|
|
737
|
+ if (!dataInfoOne[anticoagulant]) {
|
|
738
|
+ dataInfoOne[anticoagulant] = {
|
|
739
|
+ anticoagulant:item.anticoagulant,
|
|
740
|
+ name: "抗凝剂",
|
|
741
|
+ specification_name:this.getAnticoagualnt(item.anticoagulant),
|
|
742
|
+ count:0,
|
|
743
|
+ child:[]
|
|
744
|
+ }
|
|
745
|
+ }
|
|
746
|
+ })
|
|
747
|
+ let hisarr = Object.values(dataInfoOne)
|
|
748
|
+ if(hisarr!=null && hisarr.length > 0){
|
|
749
|
+ for(let i=0;i<anticoagulantList.length;i++){
|
|
750
|
+ for(let j=0;j<hisarr.length;j++){
|
|
751
|
+ if(anticoagulantList[i].anticoagulant == hisarr[j].anticoagulant){
|
|
752
|
+ hisarr[j].child.push(anticoagulantList[i])
|
|
753
|
+ }
|
|
754
|
+ }
|
|
755
|
+ }
|
|
756
|
+ }
|
|
757
|
+ for(let i=0;i<hisarr.length;i++){
|
|
758
|
+ hisarr[i].count = hisarr[i].child.length
|
|
759
|
+ this.tableList.push(hisarr[i])
|
|
760
|
+ }
|
|
761
|
+ console.log("hisarr",hisarr)
|
|
762
|
+ }
|
715
|
763
|
var dialysisDialyszersArr = []
|
716
|
764
|
var dialyzerPerfusionApparaArr = []
|
717
|
765
|
var dialysisIrrigationArr = []
|
718
|
766
|
for(let i=0;i<list.length;i++){
|
719
|
767
|
for(let j=0;j<list[i].dialysis_dialyszers_arr.length;j++){
|
720
|
|
- // console.log("list23323232",list[i].dialysis_dialyszers_arr[j])
|
721
|
768
|
dialysisDialyszersArr.push(list[i].dialysis_dialyszers_arr[j])
|
722
|
769
|
}
|
723
|
770
|
for(let z=0;z<list[i].dialyzer_perfusion_apparatus_arr.length;z++){
|
|
@@ -727,10 +774,6 @@
|
727
|
774
|
dialysisIrrigationArr.push(list[i].dialysis_irrigation_arr[y])
|
728
|
775
|
}
|
729
|
776
|
}
|
730
|
|
- // console.log("透析器",dialysisDialyszersArr)
|
731
|
|
- // console.log("透析器/灌流器",dialyzerPerfusionApparaArr)
|
732
|
|
- // console.log("灌流器",dialysisIrrigationArr)
|
733
|
|
-
|
734
|
777
|
let obj = {}
|
735
|
778
|
let objOne = {}
|
736
|
779
|
let objTwo = {}
|
|
@@ -784,79 +827,7 @@
|
784
|
827
|
a.specification_name = i
|
785
|
828
|
Arr.push(a);
|
786
|
829
|
}
|
787
|
|
- // console.log("newa",Arr)
|
788
|
|
- // console.log("total_one",total_one)
|
789
|
|
- var objArr = {name:"抗凝剂",specification_name:"无肝素",count:0}
|
790
|
|
- objArr.count = total
|
791
|
|
- var objArrOne = {name:"抗凝剂",specification_name:"普通肝素",count:0}
|
792
|
|
- objArrOne.count = total_one
|
793
|
|
- var objArrTwo = {name:"抗凝剂",specification_name:"低分子肝素",count:0}
|
794
|
|
- objArrTwo.count = total_two
|
795
|
|
- var objArrThree = {name:"抗凝剂",specification_name:"阿加曲班",count:0}
|
796
|
|
- objArrThree.count = total_three
|
797
|
|
- var objArrFour = {name:"抗凝剂",specification_name:"枸橼酸钠",count:0}
|
798
|
|
- objArrFour.count = total_four
|
799
|
|
- var objArrFive = {name:"抗凝剂",specification_name:"低分子肝素钙",count:0}
|
800
|
|
- objArrFive.count = total_five
|
801
|
|
- var objArrSix = {name:"抗凝剂",specification_name:"低分子肝素钠",count:0}
|
802
|
|
- objArrSix.count = total_six
|
803
|
|
- var objArrSeven = {name:"抗凝剂",specification_name:"依诺肝素",count:0}
|
804
|
|
- objArrSeven.count = total_seven
|
805
|
|
- var objArrEight = {name:"抗凝剂",specification_name:"达肝素",count:0}
|
806
|
|
- objArrSeven.count = total_eight
|
807
|
|
- var objArrNight = {name:"抗凝剂",specification_name:"体外抗凝",count:0}
|
808
|
|
- objArrNight.count = total_eight
|
809
|
|
- var objArrTen = {name:"抗凝剂",specification_name:"那屈肝素",count:0}
|
810
|
|
- objArrTen.count = total_ten
|
811
|
|
- var objArrEleven = {name:"抗凝剂",specification_name:"无抗凝剂",count:0}
|
812
|
|
- objArrEleven.count = total_elven
|
813
|
|
- var objArrTwenty = {name:"抗凝剂",specification_name:"那屈肝素钙",count:0}
|
814
|
|
- objArrTwenty.count = total_twenty
|
815
|
|
- // console.log("objArrOne",objArrOne.count)
|
816
|
|
- this.tableList = []
|
817
|
|
- if(parseInt(objArr.count) > 0){
|
818
|
|
- this.tableList.push(objArr)
|
819
|
|
- }
|
820
|
|
- // console.log("objArrOne",parseInt(objArrOne.count))
|
821
|
|
- if(parseInt(objArrOne.count) > 0){
|
822
|
|
- // console.log("j你了了呃呃呃呃呃呃")
|
823
|
|
- this.tableList.push(objArrOne)
|
824
|
|
- }
|
825
|
|
- if(parseInt(objArrTwo).count > 0){
|
826
|
|
- this.tableList.push(objArrTwo)
|
827
|
|
- }
|
828
|
|
- if(parseInt(objArrThree).count > 0){
|
829
|
|
- this.tableList.push(objArrThree)
|
830
|
|
- }
|
831
|
|
- if(parseInt(objArrFour.count) > 0){
|
832
|
|
- this.tableList.push(objArrFour)
|
833
|
|
- }
|
834
|
|
- if(parseInt(objArrFive.count) > 0){
|
835
|
|
- this.tableList.push(objArrFive)
|
836
|
|
- }
|
837
|
|
- if(parseInt(objArrSix.count) > 0){
|
838
|
|
- this.tableList.push(objArrSix)
|
839
|
|
- }
|
840
|
|
- if(parseInt(objArrSeven.count) > 0){
|
841
|
|
- this.tableList.push(objArrSeven)
|
842
|
|
- }
|
843
|
|
- if(parseInt(objArrEight.count) > 0){
|
844
|
|
- this.tableList.push(objArrEight)
|
845
|
|
- }
|
846
|
|
- if(parseInt(objArrNight.count) > 0){
|
847
|
|
- this.tableList.push(objArrNight)
|
848
|
|
- }
|
849
|
|
- if(parseInt(objArrTen.count) > 0){
|
850
|
|
- this.tableList.push(objArrTen)
|
851
|
|
- }
|
852
|
|
- if(parseInt(objArrEleven.count) > 0){
|
853
|
|
- this.tableList.push(objArrEleven)
|
854
|
|
- }
|
855
|
|
- if(parseInt(objArrTwenty).count > 0){
|
856
|
|
- this.tableList.push(objArrTwenty)
|
857
|
|
- }
|
858
|
|
-
|
859
|
|
-
|
|
830
|
+
|
860
|
831
|
if(Arr.length >0){
|
861
|
832
|
for(let i=0;i<Arr.length;i++){
|
862
|
833
|
this.tableList.push(Arr[i])
|
|
@@ -886,29 +857,41 @@
|
886
|
857
|
this.list[i].patient_name = this.list[i].patient.name
|
887
|
858
|
this.list[i].dialysis_no = this.list[i].patient.dialysis_no
|
888
|
859
|
this.list[i].admission_number = this.list[i].xt_receive_treatment_asses.admission_number
|
889
|
|
- this.list[i].weight_before = this.list[i].assessment_befor_dislysis.weight_befor
|
890
|
|
- this.list[i].dry_weight = this.list[i].assessment_befor_dislysis.dry_weight
|
891
|
|
- this.list[i].blood_pressure = this.list[i].assessment_befor_dislysis.systolic_blood_pressure + "/" + this.list[i].assessment_befor_dislysis.diastolic_blood_pressure
|
892
|
|
- this.list[i].ultrafiltration_volume = this.list[i].dialysis_prescription.target_ultrafiltration
|
|
860
|
+ this.list[i].weight_before = this.list[i].assessment_befor_dislysis.weight_before?this.list[i].assessment_befor_dislysis.weight_before:"",
|
|
861
|
+ this.list[i].dry_weight = this.list[i].assessment_befor_dislysis.dry_weight?this.list[i].assessment_befor_dislysis.dry_weight:""
|
|
862
|
+ this.list[i].blood_pressure = this.list[i].assessment_befor_dislysis.systolic_blood_pressure?this.list[i].assessment_befor_dislysis.systolic_blood_pressure:"" + "/" + this.list[i].assessment_befor_dislysis.diastolic_blood_pressure? this.list[i].assessment_befor_dislysis.diastolic_blood_pressure:""
|
|
863
|
+ if(this.list[i].blood_pressure == 0){
|
|
864
|
+ this.list[i].blood_pressure = ""
|
|
865
|
+ }
|
|
866
|
+ this.list[i].ultrafiltration_volume = this.list[i].dialysis_prescription.target_ultrafiltration?this.list[i].dialysis_prescription.target_ultrafiltration:""
|
893
|
867
|
|
894
|
|
- 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
|
895
|
|
-
|
896
|
|
- this.list[i].dialysis_time = this.list[i].dialysis_prescription.dialysis_duration_hour + "时"+ this.list[i].dialysis_prescription.dialysis_duration_minute + "分"
|
|
868
|
+ 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_shouji:"" +")" + "("+this.list[i].dialysis_prescription.anticoagulant_weichi?this.list[i].dialysis_prescription.anticoagulant_weichi:"" +")"+ +"("+this.list[i].dialysis_prescription.anticoagulant_zongliang?this.list[i].dialysis_prescription.anticoagulant_zongliang:""+")"
|
|
869
|
+ if(this.list[i].anticoagulant_one == 0){
|
|
870
|
+ this.list[i].anticoagulant_one = ""
|
|
871
|
+ }
|
|
872
|
+ this.list[i].dialysis_time = this.list[i].dialysis_prescription.dialysis_duration_hour?this.list[i].dialysis_prescription.dialysis_duration_hour:"" + "时"+ this.list[i].dialysis_prescription.dialysis_duration_minute?this.list[i].dialysis_prescription.dialysis_duration_minute:"" + "分"
|
|
873
|
+ if(this.list[i].dialysis_time == 0){
|
|
874
|
+ this.list[i].dialysis_time = ""
|
|
875
|
+ }
|
897
|
876
|
this.list[i].device_type = this.list[i].assessment_befor_dislysis.machine_type
|
898
|
877
|
this.list[i].dialyzer_perfusion_apparatus = this.list[i].dialysis_prescription.dialyzer_perfusion_apparatus
|
899
|
878
|
this.list[i].dialysis_dialyszers = this.list[i].dialysis_prescription.dialysis_dialyszers
|
900
|
879
|
this.list[i].dialysis_irrigation = this.list[i].dialysis_prescription.dialysis_irrigation
|
901
|
|
- this.list[i].displace_liqui_value = this.list[i].dialysis_prescription.replacement_total
|
902
|
|
- this.list[i].kalium = this.list[i].dialysis_prescription.kalium
|
903
|
|
- this.list[i].sodium = this.list[i].dialysis_prescription.sodium
|
904
|
|
- this.list[i].calcium = this.list[i].dialysis_prescription.bicarbonate
|
|
880
|
+ this.list[i].displace_liqui_part = this.getDisplaceLiquiPart(this.list[i].dialysis_prescription.displace_liqui_part)
|
|
881
|
+ this.list[i].displace_liqui_value = this.list[i].dialysis_prescription.displace_liqui_value? this.list[i].dialysis_prescription.displace_liqui_value:""
|
|
882
|
+ this.list[i].kalium = this.list[i].dialysis_prescription.kalium?this.list[i].dialysis_prescription.kalium:""
|
|
883
|
+ this.list[i].sodium = this.list[i].dialysis_prescription.sodium?this.list[i].dialysis_prescription.sodium:""
|
|
884
|
+ this.list[i].calcium = this.list[i].dialysis_prescription.calcium?this.list[i].dialysis_prescription.calcium:""
|
905
|
885
|
this.list[i].blood_access = this.getBloodAccessOption(this.list[i].dialysis_prescription.blood_access)
|
906
|
886
|
this.list[i].sealing_fluid_dispose =this.list[i].xt_assesment_after_dislysis.sealing_fluid_dispose
|
907
|
|
- this.list[i].glucose = this.list[i].dialysis_prescription.amylaceum
|
|
887
|
+ this.list[i].glucose = this.list[i].dialysis_prescription.glucose?this.list[i].dialysis_prescription.glucose:""
|
|
888
|
+ this.list[i].blood_flow_volume = this.list[i].dialysis_prescription.blood_flow_volume?this.list[i].dialysis_prescription.blood_flow_volume:""
|
|
889
|
+ this.list[i].bicarbonate = this.list[i].dialysis_prescription.bicarbonate? this.list[i].dialysis_prescription.bicarbonate:""
|
908
|
890
|
}
|
909
|
891
|
}
|
910
|
892
|
|
911
|
|
- // console.log("list23323232322323wode",this.list)
|
|
893
|
+ console.log("list23323232322323wode",this.list)
|
|
894
|
+
|
912
|
895
|
var arr= []
|
913
|
896
|
var arrTwo = []
|
914
|
897
|
arr.push('序号')
|
|
@@ -931,7 +914,7 @@
|
931
|
914
|
}
|
932
|
915
|
if(this.dialysisSett.weight_befor == 1){
|
933
|
916
|
arr.push("透前体重")
|
934
|
|
- arrTwo.push("weight_befor")
|
|
917
|
+ arrTwo.push("weight_before")
|
935
|
918
|
}
|
936
|
919
|
if(this.dialysisSett.dry_weight == 1){
|
937
|
920
|
arr.push("干体重")
|
|
@@ -969,6 +952,10 @@
|
969
|
952
|
arr.push("灌流器")
|
970
|
953
|
arrTwo.push("dialysis_irrigation")
|
971
|
954
|
}
|
|
955
|
+ if(this.dialysisSett.displace_liqui_part == 1){
|
|
956
|
+ arr.push("置换液")
|
|
957
|
+ arrTwo.push("displace_liqui_part")
|
|
958
|
+ }
|
972
|
959
|
if(this.dialysisSett.displace_liqui_value == 1){
|
973
|
960
|
arr.push("置换液总量")
|
974
|
961
|
arrTwo.push("displace_liqui_value")
|
|
@@ -1003,6 +990,10 @@
|
1003
|
990
|
arr.push("葡萄糖")
|
1004
|
991
|
arrTwo.push("glucose")
|
1005
|
992
|
}
|
|
993
|
+ if(this.dialysisSett.blood_flow_volume == 1){
|
|
994
|
+ arr.push("血流量")
|
|
995
|
+ arrTwo.push("blood_flow_volume")
|
|
996
|
+ }
|
1006
|
997
|
|
1007
|
998
|
|
1008
|
999
|
const tHeader = arr
|
|
@@ -1488,7 +1479,7 @@
|
1488
|
1479
|
getRemindPrintList().then(response => {
|
1489
|
1480
|
if (response.data.state == 1) {
|
1490
|
1481
|
var list = response.data.data.list
|
1491
|
|
- // console.log('list222332', list)
|
|
1482
|
+ console.log('list222332', list)
|
1492
|
1483
|
if (list.anticoagulant == 1) {
|
1493
|
1484
|
// console.log('进来22222')
|
1494
|
1485
|
this.anticoagulant = true
|