|
@@ -170,6 +170,35 @@
|
170
|
170
|
>批量打印</el-button
|
171
|
171
|
>
|
172
|
172
|
</template>
|
|
173
|
+ <template v-if="this.template_id == 22">
|
|
174
|
+ <div>
|
|
175
|
+ <el-button
|
|
176
|
+ :loading="loading"
|
|
177
|
+ size="small"
|
|
178
|
+ icon="el-icon-printer"
|
|
179
|
+ @click="batchPrintAction"
|
|
180
|
+ type="primary"
|
|
181
|
+ >打印全部</el-button
|
|
182
|
+ >
|
|
183
|
+ <el-button
|
|
184
|
+ :loading="loading"
|
|
185
|
+ size="small"
|
|
186
|
+ icon="el-icon-printer"
|
|
187
|
+ @click="batchPrintActionOne"
|
|
188
|
+ type="primary"
|
|
189
|
+ style=""
|
|
190
|
+ >打印纪录单</el-button
|
|
191
|
+ >
|
|
192
|
+ <el-button
|
|
193
|
+ :loading="loading"
|
|
194
|
+ size="small"
|
|
195
|
+ icon="el-icon-printer"
|
|
196
|
+ @click="batchPrintActionTwo"
|
|
197
|
+ type="primary"
|
|
198
|
+ >打印医嘱单</el-button
|
|
199
|
+ >
|
|
200
|
+ </div>
|
|
201
|
+ </template>
|
173
|
202
|
</div>
|
174
|
203
|
<div class="app-container">
|
175
|
204
|
<!-- <div class="filter-container">
|
|
@@ -679,6 +708,8 @@ export default {
|
679
|
708
|
this.$router.push({ path: "/dialysis/print/batch/fifteen" });
|
680
|
709
|
} else if (this.template_id == 20) {
|
681
|
710
|
this.$router.push({ path: "/dialysis/print/batch/twenty" });
|
|
711
|
+ } else if (this.template_id == 22) {
|
|
712
|
+ this.$router.push({ path: "/dialysis/print/batch/twentyTwo" });
|
682
|
713
|
}
|
683
|
714
|
},
|
684
|
715
|
batchPrintActionOne: function() {
|
|
@@ -697,6 +728,8 @@ export default {
|
697
|
728
|
this.$router.push({ path: "/dialysis/print/batch" });
|
698
|
729
|
} else if (this.template_id == 5) {
|
699
|
730
|
this.$router.push({ path: "/dialysis/print/batch/fiveone" });
|
|
731
|
+ } else if (this.template_id == 22) {
|
|
732
|
+ this.$router.push({ path: "/dialysis/print/batch/twentyTwo_one" });
|
700
|
733
|
}
|
701
|
734
|
},
|
702
|
735
|
batchPrintActionTwo: function() {
|
|
@@ -715,6 +748,8 @@ export default {
|
715
|
748
|
this.$router.push({ path: "/dialysis/print/batch" });
|
716
|
749
|
} else if (this.template_id == 5) {
|
717
|
750
|
this.$router.push({ path: "/dialysis/print/batch/fivetwo" });
|
|
751
|
+ } else if (this.template_id == 22) {
|
|
752
|
+ this.$router.push({ path: "/dialysis/print/batch/twentyTwo_two" });
|
718
|
753
|
}
|
719
|
754
|
}
|
720
|
755
|
},
|