|
@@ -964,6 +964,18 @@
|
964
|
964
|
>
|
965
|
965
|
</div>
|
966
|
966
|
</template>
|
|
967
|
+ <template v-if="org_template_info.template_id == 78 ">
|
|
968
|
+ <div>
|
|
969
|
+ <el-button
|
|
970
|
+ :loading="loading"
|
|
971
|
+ size="small"
|
|
972
|
+ icon="el-icon-printer"
|
|
973
|
+ @click="printThisPage"
|
|
974
|
+ type="primary"
|
|
975
|
+ >打印</el-button
|
|
976
|
+ >
|
|
977
|
+ </div>
|
|
978
|
+ </template>
|
967
|
979
|
</div>
|
968
|
980
|
<div class="app-container" style="min-height: 0">
|
969
|
981
|
<!--<div class="order-print-btn"-->
|
|
@@ -1475,6 +1487,11 @@
|
1475
|
1487
|
<DialysisPrintOrderSeventyseven v-bind:childResponse="childResponse"
|
1476
|
1488
|
v-if="org_template_info.template_id == 77">
|
1477
|
1489
|
</DialysisPrintOrderSeventyseven>
|
|
1490
|
+
|
|
1491
|
+ <DialysisPrintOrderSeventyeight v-bind:childResponse="childResponse"
|
|
1492
|
+ v-if="org_template_info.template_id == 78">
|
|
1493
|
+
|
|
1494
|
+ </DialysisPrintOrderSeventyeight>
|
1478
|
1495
|
</div>
|
1479
|
1496
|
</el-container>
|
1480
|
1497
|
</div>
|
|
@@ -1570,6 +1587,7 @@ import DialysisPrintOrderSop from './template/DialysisPrintOrderSop'
|
1570
|
1587
|
import DialysisPrintOrderseventyfive from './template/DialysisPrintOrderseventyfive'
|
1571
|
1588
|
import DialysisPrintOrderSeventysix from './template/DialysisPrintOrderSeventysix'
|
1572
|
1589
|
import DialysisPrintOrderSeventyseven from './template/DialysisPrintOrderSeventyseven'
|
|
1590
|
+import DialysisPrintOrderSeventyeight from './template/DialysisPrintOrderSeventyeight'
|
1573
|
1591
|
import DialysisPrintOrderZero from './template/DialysisPrintOrderZero'
|
1574
|
1592
|
export default {
|
1575
|
1593
|
name: "dialysisPrintOrder",
|
|
@@ -1651,6 +1669,7 @@ export default {
|
1651
|
1669
|
DialysisPrintOrderseventyfive,
|
1652
|
1670
|
DialysisPrintOrderSeventysix,
|
1653
|
1671
|
DialysisPrintOrderSeventyseven,
|
|
1672
|
+ DialysisPrintOrderSeventyeight,
|
1654
|
1673
|
DialysisPrintOrderZero,
|
1655
|
1674
|
LabelBox,
|
1656
|
1675
|
BreadCrumb,
|
|
@@ -2347,6 +2366,13 @@ export default {
|
2347
|
2366
|
style: style2,
|
2348
|
2367
|
scanStyles: false,
|
2349
|
2368
|
});
|
|
2369
|
+ }else if (this.org_template_info.template_id == 78 ) {
|
|
2370
|
+ printJS({
|
|
2371
|
+ printable: "dialysis-print-box-1",
|
|
2372
|
+ type: "html",
|
|
2373
|
+ style: style2,
|
|
2374
|
+ scanStyles: false,
|
|
2375
|
+ });
|
2350
|
2376
|
}
|
2351
|
2377
|
else if (this.org_template_info.template_id == 199 ) {
|
2352
|
2378
|
printJS({
|