123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <template>
- <div>
- <template>
- <el-button
- style="position:fixed;right:25px;z-index:999"
- :loading="loading"
- size="small"
- icon="el-icon-printer"
- @click="printThisPage"
- type="primary"
- >打印</el-button
- >
- </template>
- <div class="app-container" style="padding-top:40px;">
- <div class='dialysisPage'>
- <printOne v-if="org_id != 4" v-bind:childResponse="childResponse" :paramsObj="paramsObj"></printOne>
- <printTwo v-else v-bind:childResponse="childResponse" :paramsObj="paramsObj"></printTwo>
-
- </div>
- </div>
- </div>
- </template>
-
- <script>
-
- import {
- getDialysisRecordInitData,
- getDialysisSchedules
- } from "@/api/dialysis_record";
- import { parseTime } from "@/utils";
- import { getDialysisRecord } from "@/api/dialysis";
- import { getDataConfig } from "@/utils/data";
- import { jsGetAge, uParseTime } from "@/utils/tools";
- // import LabelBox from "./printItem/LabelBox";
- import BreadCrumb from "@/xt_pages/components/bread-crumb";
- import print from "print-js";
- import printOne from "./treatTemplate/printOne"
- import printTwo from "./treatTemplate/printTwo"
- export default {
- name: "dialysisPrintOrder",
- components: {
- BreadCrumb,
- printOne,
- printTwo
- },
- props:{
- paramsObj:Object
- },
- data() {
- return {
- crumbs: [
- { path: false, name: "透析管理" },
- { path: false, name: "打印单" }
- ],
- childResponse: {},
- paramsObj:{},
- org_id:''
-
-
- };
- },
- methods: {
- getAdminUser(id) {
- if (id == 0) {
- return "";
- }
- if (id == undefined) {
- return "";
- }
- for (let i = 0; i < this.adminUser.length; i++) {
- if (this.adminUser[i].id == id) {
- return this.adminUser[i].name;
- }
- }
- },
- getTime(value, temp) {
- if (value == 0) {
- return "";
- }
- if (value != undefined) {
- return uParseTime(value, temp);
- }
- return "";
- },
- printThisPage() {
- var ptime = Math.round(new Date().getTime() / 1000);
- this.print_time = uParseTime(ptime, "{y}-{m}-{d} {h}:{i}");
-
- if(this.org_id == 4){
- const style =
- '@media print {#prescription-print{font-size:12px;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}}';
- printJS({
- printable: "prescription-print",
- type: "html",
- style: style,
- scanStyles: false
- });
- }else{
- const style =
- '@media print {.printTitle{font-size: 22px;text-align: center;font-weight: bold;}.infoMain{display: flex;flex-wrap: wrap;padding:0 10px;margin-top:10px;}.infoMain .infoP{width: 33%;}.chargeBox{border: 1px solid #000;}.chargeUl{display:flex;justify-content: space-between;text-align: center;}.chargeUl p{line-height: 1px;}.chargeP{line-height: 1px;padding-bottom:16px;}.moneyBox{display: flex;justify-content: space-between;padding: 0 10px;background: #eeeeee;-webkit-print-color-adjust:exact;-moz-print-color-adjust:exact;-ms-print-color-adjust:exact;print-color-adjust:exact;height: 40px;align-items: center;border:1px solid #000; border-top:none}.actionBar{display: flex;justify-content: space-between; line-height: 24px;padding:0 10px;}.actionBar div{width:150px;}}';
- printJS({
- printable: "prescription-print",
- type: "html",
- style: style,
- scanStyles: false
- });
- }
-
-
- // if (this.org_template_info.template_id == 1) {
- // printJS({
- // printable: "dialysis-print-box",
- // type: "html",
- // style: style,
- // scanStyles: false
- // });
- // }
- },
- },
- created() {
- this.org_id = this.$store.getters.xt_user.org_id
- },
- watch:{
- paramsObj:{//深度监听,可监听到对象、数组的变化
- handler(val, oldVal){
- this.paramsObj = val
-
- },
- deep:true
- }
- }
- };
- </script>
-
- <style lang="scss" scoped>
- .printTitle{
- font-size: 22px;
- text-align: center;
- font-weight: bold;
- }
- .infoMain{
- display: flex;
- flex-wrap: wrap;
- border-bottom: 2px solid #000;
- padding:0 10px;
- }
- .infoMain .infoP{
- width: 33%;
- line-height: 24px;
- }
- .prescriptionBox{
- padding:0 10px;
- height:600px;
- }
- .Rp{
- font-size: 22px;
- font-weight: bold;
- }
- .drugsBox{
- padding-left: 40px;
- margin-bottom: 10px;
- }
- .drugsBox p{
- line-height: 30px;
- }
- .drugsOne{
- line-height: 24px;
- }
- .drugsOne span{
- margin-right: 20px;
- }
- .doctorBox{
- display: flex;
- justify-content: space-between;
- padding:0 10px;
- line-height: 24px;
- border-bottom: 2px solid #000;
- }
- .actionBar{
- display: flex;
- justify-content: space-between;
- line-height: 24px;
- padding:0 10px;
- }
- .actionBar p{
- width:150px;
- }
- </style>
|