|
@@ -228,7 +228,7 @@
|
228
|
228
|
>批量打印</el-button
|
229
|
229
|
>
|
230
|
230
|
</template>
|
231
|
|
-
|
|
231
|
+
|
232
|
232
|
<template v-if="template_id == 27">
|
233
|
233
|
<el-button
|
234
|
234
|
style=""
|
|
@@ -268,6 +268,7 @@
|
268
|
268
|
>批量打印</el-button
|
269
|
269
|
>
|
270
|
270
|
</template>
|
|
271
|
+
|
271
|
272
|
<template v-if="this.template_id == 32">
|
272
|
273
|
<el-button
|
273
|
274
|
size="small"
|
|
@@ -548,6 +549,16 @@
|
548
|
549
|
type="primary"
|
549
|
550
|
>批量打印</el-button>
|
550
|
551
|
</template>
|
|
552
|
+ <template v-if="this.template_id == 82">
|
|
553
|
+ <el-button
|
|
554
|
+ size="small"
|
|
555
|
+ icon="el-icon-printer"
|
|
556
|
+ :disabled="selecting_schs.length == 0"
|
|
557
|
+ @click="batchPrintAction"
|
|
558
|
+ type="primary"
|
|
559
|
+ >批量打印</el-button
|
|
560
|
+ >
|
|
561
|
+ </template>
|
551
|
562
|
</div>
|
552
|
563
|
</div>
|
553
|
564
|
<div class="app-container">
|
|
@@ -1982,7 +1993,6 @@ export default {
|
1982
|
1993
|
this.getSchedualPatientList()
|
1983
|
1994
|
},
|
1984
|
1995
|
changeEndTime(){
|
1985
|
|
-
|
1986
|
1996
|
this.getSchedualPatientList()
|
1987
|
1997
|
},
|
1988
|
1998
|
getAllZone: function() {
|
|
@@ -2014,8 +2024,6 @@ export default {
|
2014
|
2024
|
this.listQuery.schedul_time = "";
|
2015
|
2025
|
|
2016
|
2026
|
}
|
2017
|
|
-
|
2018
|
|
-
|
2019
|
2027
|
console.log("params332322332323232",this.listQuery.start_time)
|
2020
|
2028
|
this.SchedualPatientsTableData = [];
|
2021
|
2029
|
getSchedualPatient(this.listQuery).then(response => {
|
|
@@ -2027,7 +2035,8 @@ export default {
|
2027
|
2035
|
} else {
|
2028
|
2036
|
this.loading = false;
|
2029
|
2037
|
this.total = response.data.data.total;
|
2030
|
|
- console.log("世界文化遗产",response.data.data.schedule)
|
|
2038
|
+ console.log("世界文化遗产",response.data.data)
|
|
2039
|
+ // const schedualpatientsTableData2=[]
|
2031
|
2040
|
for (let i = 0; i < response.data.data.schedule.length; i++) {
|
2032
|
2041
|
|
2033
|
2042
|
if (response.data.data.schedule[i].patient&&response.data.data.schedule[i].patient.id > 0) {
|
|
@@ -2082,9 +2091,6 @@ export default {
|
2082
|
2091
|
SchedualPatientsTable["pressure_name"] =response.data.data.schedule[i].assessment_before_dislysis.systolic_blood_pressure+"/"+ response.data.data.schedule[i].assessment_before_dislysis.diastolic_blood_pressure;
|
2083
|
2092
|
}
|
2084
|
2093
|
|
2085
|
|
-
|
2086
|
|
-
|
2087
|
|
-
|
2088
|
2094
|
if(response.data.data.schedule[i].monitoring_record!=null &&response.data.data.schedule[i].monitoring_record.length >0 ){
|
2089
|
2095
|
SchedualPatientsTable["monitoring_record"] = response.data.data.schedule[i].monitoring_record
|
2090
|
2096
|
}
|
|
@@ -2107,7 +2113,6 @@ export default {
|
2107
|
2113
|
}
|
2108
|
2114
|
}
|
2109
|
2115
|
|
2110
|
|
-
|
2111
|
2116
|
// 体温
|
2112
|
2117
|
SchedualPatientsTable.tp = [];
|
2113
|
2118
|
|
|
@@ -2546,8 +2551,8 @@ export default {
|
2546
|
2551
|
SchedualPatientsTable["after_pressure_name"] =response.data.data.schedule[i].assessment_after_dislysis.systolic_blood_pressure+"/"+ response.data.data.schedule[i].assessment_after_dislysis.diastolic_blood_pressure;
|
2547
|
2552
|
}
|
2548
|
2553
|
|
2549
|
|
-
|
2550
|
|
-
|
|
2554
|
+ // schedualpatientsTableData2.push(SchedualPatientsTable)
|
|
2555
|
+ // this.SchedualPatientsTableData = schedualpatientsTableData2
|
2551
|
2556
|
this.SchedualPatientsTableData.push(SchedualPatientsTable);
|
2552
|
2557
|
// console.log("wode数据",(-100).toString())
|
2553
|
2558
|
// console.log("数据哦哦😯噢232o",this.SchedualPatientsTableData)
|
|
@@ -2782,6 +2787,8 @@ export default {
|
2782
|
2787
|
this.$router.push({ path: "/dialysis/print/batch/eighty" });
|
2783
|
2788
|
}else if (this.template_id == 81) {
|
2784
|
2789
|
this.$router.push({ path: "/dialysis/print/batch/eightyone" });
|
|
2790
|
+ } else if (this.template_id == 82) {
|
|
2791
|
+ this.$router.push({ path: "/dialysis/print/batch/eightyTwo" });
|
2785
|
2792
|
}
|
2786
|
2793
|
},
|
2787
|
2794
|
batchPrintActionOne: function() {
|