|
@@ -91,7 +91,7 @@
|
91
|
91
|
>
|
92
|
92
|
</div>
|
93
|
93
|
</template>
|
94
|
|
- <template v-if="this.template_id == 6 || this.template_id == 48 || this.template_id == 0">
|
|
94
|
+ <template v-if="this.template_id == 6 || this.template_id == 48 || this.template_id == 0 ||this.template_id == 60">
|
95
|
95
|
<el-button
|
96
|
96
|
size="small"
|
97
|
97
|
icon="el-icon-printer"
|
|
@@ -319,6 +319,26 @@
|
319
|
319
|
>批量打印</el-button
|
320
|
320
|
>
|
321
|
321
|
</template>
|
|
322
|
+ <template v-if="this.template_id == 59">
|
|
323
|
+ <el-button
|
|
324
|
+ size="small"
|
|
325
|
+ icon="el-icon-printer"
|
|
326
|
+ :disabled="selecting_schs.length == 0"
|
|
327
|
+ @click="batchPrintAction"
|
|
328
|
+ type="primary"
|
|
329
|
+ >打印</el-button>
|
|
330
|
+ </template>
|
|
331
|
+ <template v-if="this.template_id == 60">
|
|
332
|
+ <el-button
|
|
333
|
+ size="small"
|
|
334
|
+ icon="el-icon-printer"
|
|
335
|
+ :disabled="selecting_schs.length == 0"
|
|
336
|
+ @click="batchPrintAction"
|
|
337
|
+ type="primary"
|
|
338
|
+ >批量打印</el-button>
|
|
339
|
+ </template>
|
|
340
|
+
|
|
341
|
+
|
322
|
342
|
|
323
|
343
|
</div>
|
324
|
344
|
<div class="app-container">
|
|
@@ -958,6 +978,10 @@ export default {
|
958
|
978
|
this.$router.push({ path: "/dialysis/print/batch/fortyThree" });
|
959
|
979
|
} else if (this.template_id == 48) {
|
960
|
980
|
this.$router.push({ path: "/dialysis/print/batch/six" });
|
|
981
|
+ }else if (this.template_id == 59) {
|
|
982
|
+ this.$router.push({ path: "/dialysis/print/batch/fiftynine" });
|
|
983
|
+ }else if (this.template_id == 60) {
|
|
984
|
+ this.$router.push({ path: "/dialysis/print/batch/sixty" });
|
961
|
985
|
}
|
962
|
986
|
},
|
963
|
987
|
batchPrintActionOne: function() {
|