|
@@ -29,7 +29,7 @@
|
29
|
29
|
@click="batchPrintActionOne"
|
30
|
30
|
type="primary"
|
31
|
31
|
style=""
|
32
|
|
- >打印纪录单</el-button
|
|
32
|
+ >打印记录单</el-button
|
33
|
33
|
>
|
34
|
34
|
<el-button
|
35
|
35
|
:loading="loading"
|
|
@@ -78,7 +78,7 @@
|
78
|
78
|
@click="batchPrintActionOne"
|
79
|
79
|
type="primary"
|
80
|
80
|
style=""
|
81
|
|
- >打印纪录单</el-button
|
|
81
|
+ >打印记录单</el-button
|
82
|
82
|
>
|
83
|
83
|
<el-button
|
84
|
84
|
:loading="loading"
|
|
@@ -197,7 +197,7 @@
|
197
|
197
|
@click="batchPrintActionOne"
|
198
|
198
|
type="primary"
|
199
|
199
|
style=""
|
200
|
|
- >打印纪录单</el-button
|
|
200
|
+ >打印记录单</el-button
|
201
|
201
|
>
|
202
|
202
|
<el-button
|
203
|
203
|
:loading="loading"
|
|
@@ -647,7 +647,7 @@ export default {
|
647
|
647
|
},
|
648
|
648
|
selecting_schs: [],
|
649
|
649
|
partitionArr: [],
|
650
|
|
-
|
|
650
|
+
|
651
|
651
|
};
|
652
|
652
|
},
|
653
|
653
|
created() {
|
|
@@ -696,7 +696,7 @@ export default {
|
696
|
696
|
this.getSchedualPatientList();
|
697
|
697
|
this.getTemplateInfo();
|
698
|
698
|
}
|
699
|
|
-
|
|
699
|
+
|
700
|
700
|
// this.template_id = this.$store.getters.xt_user.template_info.template_id;
|
701
|
701
|
},
|
702
|
702
|
methods: {
|
|
@@ -742,7 +742,7 @@ export default {
|
742
|
742
|
this.getSchedualPatientList()
|
743
|
743
|
},
|
744
|
744
|
changeEndTime(){
|
745
|
|
-
|
|
745
|
+
|
746
|
746
|
this.getSchedualPatientList()
|
747
|
747
|
},
|
748
|
748
|
getAllZone: function() {
|
|
@@ -766,7 +766,7 @@ export default {
|
766
|
766
|
console.log("params332322332323232",this.listQuery)
|
767
|
767
|
this.SchedualPatientsTableData = [];
|
768
|
768
|
getSchedualPatient(this.listQuery).then(response => {
|
769
|
|
-
|
|
769
|
+
|
770
|
770
|
if (response.data.state == 0) {
|
771
|
771
|
this.loading = false;
|
772
|
772
|
this.$message.error(response.data.msg);
|
|
@@ -783,7 +783,7 @@ export default {
|
783
|
783
|
if(response.data.data.schedule[i].dialysis_order!=null){
|
784
|
784
|
SchedualPatientsTable["start_time"] = response.data.data.schedule[i].dialysis_order.start_time ? parseTime(response.data.data.schedule[i].dialysis_order.start_time,"{h}:{i}") : '';
|
785
|
785
|
}
|
786
|
|
-
|
|
786
|
+
|
787
|
787
|
SchedualPatientsTable["sch_id"] = response.data.data.schedule[i].id;
|
788
|
788
|
SchedualPatientsTable["sch_time_int"] = response.data.data.schedule[i].schedule_date;
|
789
|
789
|
SchedualPatientsTable["sch_time"] = parseTime(response.data.data.schedule[i].schedule_date,"{y}-{m}-{d}");
|
|
@@ -795,16 +795,16 @@ export default {
|
795
|
795
|
SchedualPatientsTable["source"] = response.data.data.schedule[i].patient.source;
|
796
|
796
|
SchedualPatientsTable["patient_id"] = response.data.data.schedule[i].patient_id;
|
797
|
797
|
}
|
798
|
|
-
|
|
798
|
+
|
799
|
799
|
SchedualPatientsTable["number"] = response.data.data.schedule[i].device_number.number;
|
800
|
|
-
|
|
800
|
+
|
801
|
801
|
if(response.data.data.schedule[i].treatment_mode!=null){
|
802
|
802
|
SchedualPatientsTable["mode_name"] = response.data.data.schedule[i].treatment_mode.name;
|
803
|
803
|
}
|
804
|
804
|
if(response.data.data.schedule[i].prescription!=null){
|
805
|
|
- SchedualPatientsTable["target_ultrafiltration"] = response.data.data.schedule[i].prescription.target_ultrafiltration;
|
|
805
|
+ SchedualPatientsTable["target_ultrafiltration"] = response.data.data.schedule[i].prescription.target_ultrafiltration;
|
806
|
806
|
}
|
807
|
|
-
|
|
807
|
+
|
808
|
808
|
if (response.data.data.schedule[i].assessment_before_dislysis != null) {
|
809
|
809
|
SchedualPatientsTable["dialysis_before_weight"] =response.data.data.schedule[i].assessment_before_dislysis.weight_before;
|
810
|
810
|
}
|
|
@@ -820,17 +820,17 @@ export default {
|
820
|
820
|
SchedualPatientsTable.bp.push(bp);
|
821
|
821
|
}
|
822
|
822
|
}
|
823
|
|
-
|
|
823
|
+
|
824
|
824
|
|
825
|
825
|
this.SchedualPatientsTableData.push(SchedualPatientsTable);
|
826
|
|
-
|
|
826
|
+
|
827
|
827
|
}
|
828
|
828
|
}
|
829
|
829
|
}
|
830
|
830
|
});
|
831
|
831
|
},
|
832
|
832
|
getValue: function(val) {
|
833
|
|
-
|
|
833
|
+
|
834
|
834
|
if (val != undefined) {
|
835
|
835
|
var str = val.value.split("/")
|
836
|
836
|
return str[0];
|