vue3 前端实现pdf打印预览 printjs

在这里插入图片描述

  1. 在utils建print.ts文件
interface PrintFunction {extendOptions: Function;getStyle: Function;setDomHeight: Function;toPrint: Function;
}const Print = function (dom, options?: object): PrintFunction {options = options || {};// @ts-expect-errorif (!(this instanceof Print)) return new Print(dom, options);this.conf = {styleStr: "",// Elements that need to dynamically get and set the heightsetDomHeightArr: [],// Callback before printingprintBeforeFn: null,// Callback after printingprintDoneCallBack: null};for (const key in this.conf) {// eslint-disable-next-line no-prototype-builtinsif (key && options.hasOwnProperty(key)) {this.conf[key] = options[key];}}if (typeof dom === "string") {this.dom = document.querySelector(dom);} else {this.dom = this.isDOM(dom) ? dom : dom.$el;}if (this.conf.setDomHeightArr && this.conf.setDomHeightArr.length) {this.setDomHeight(this.conf.setDomHeightArr);}this.init();
};Print.prototype = {/*** init*/init: function (): void {const content = this.getStyle() + this.getHtml();this.writeIframe(content);},/*** Configuration property extension* @param {Object} obj* @param {Object} obj2*/extendOptions: function <T>(obj, obj2: T): T {for (const k in obj2) {obj[k] = obj2[k];}return obj;},/**Copy all styles of the original page*/getStyle: function (): string {let str = "";const styles: NodeListOf<Element> = document.querySelectorAll("style,link");for (let i = 0; i < styles.length; i++) {str += styles[i].outerHTML;}str += `<style>.no-print{display:none;}${this.conf.styleStr}</style>`;return str;},// form assignmentgetHtml: function (): Element {const inputs = document.querySelectorAll("input");const selects = document.querySelectorAll("select");const textareas = document.querySelectorAll("textarea");const canvass = document.querySelectorAll("canvas");for (let k = 0; k < inputs.length; k++) {if (inputs[k].type == "checkbox" || inputs[k].type == "radio") {if (inputs[k].checked == true) {inputs[k].setAttribute("checked", "checked");} else {inputs[k].removeAttribute("checked");}} else if (inputs[k].type == "text") {inputs[k].setAttribute("value", inputs[k].value);} else {inputs[k].setAttribute("value", inputs[k].value);}}for (let k2 = 0; k2 < textareas.length; k2++) {if (textareas[k2].type == "textarea") {textareas[k2].innerHTML = textareas[k2].value;}}for (let k3 = 0; k3 < selects.length; k3++) {if (selects[k3].type == "select-one") {const child = selects[k3].children;for (const i in child) {if (child[i].tagName == "OPTION") {if ((child[i] as any).selected == true) {child[i].setAttribute("selected", "selected");} else {child[i].removeAttribute("selected");}}}}}for (let k4 = 0; k4 < canvass.length; k4++) {const imageURL = canvass[k4].toDataURL("image/png");const img = document.createElement("img");img.src = imageURL;img.setAttribute("style", "max-width: 100%;");img.className = "isNeedRemove";canvass[k4].parentNode.insertBefore(img, canvass[k4].nextElementSibling);}return this.dom.outerHTML;},/**create iframe*/writeIframe: function (content) {let w: Document | Window;let doc: Document;const iframe: HTMLIFrameElement = document.createElement("iframe");const f: HTMLIFrameElement = document.body.appendChild(iframe);iframe.id = "myIframe";iframe.setAttribute("style","position:absolute;width:0;height:0;top:-10px;left:-10px;");// eslint-disable-next-line prefer-constw = f.contentWindow || f.contentDocument;// eslint-disable-next-line prefer-constdoc = f.contentDocument || f.contentWindow.document;doc.open();doc.write(content);doc.close();const removes = document.querySelectorAll(".isNeedRemove");for (let k = 0; k < removes.length; k++) {removes[k].parentNode.removeChild(removes[k]);}// eslint-disable-next-line @typescript-eslint/no-this-aliasconst _this = this;iframe.onload = function (): void {// Before popping, callbackif (_this.conf.printBeforeFn) {_this.conf.printBeforeFn({ doc });}_this.toPrint(w);setTimeout(function () {document.body.removeChild(iframe);// After popup, callbackif (_this.conf.printDoneCallBack) {_this.conf.printDoneCallBack();}}, 100);};},/**Print*/toPrint: function (frameWindow): void {try {setTimeout(function () {frameWindow.focus();try {if (!frameWindow.document.execCommand("print", false, null)) {frameWindow.print();}} catch (e) {frameWindow.print();}frameWindow.close();}, 10);} catch (err) {console.error(err);}},isDOM:typeof HTMLElement === "object"? function (obj) {return obj instanceof HTMLElement;}: function (obj) {return (obj &&typeof obj === "object" &&obj.nodeType === 1 &&typeof obj.nodeName === "string");},/*** Set the height of the specified dom element by getting the existing height of the dom element and setting* @param {Array} arr*/setDomHeight(arr) {if (arr && arr.length) {arr.forEach(name => {const domArr = document.querySelectorAll(name);console.log(name, domArr);domArr.forEach(dom => {dom.style.height = dom.offsetHeight + "px";});});}}
};export default Print;
  1. .vue页面使用
    html
    <div class="w-full p-1" id="printApply" style="overflow: auto"><div class="text-center text-2xl">江苏微导纳米股份有限公司</div><div class="text-center text-xl mb-6 mt-2">工具出库单</div><div class="flex"><div class="flex-1 mb-2"><div class="mb-3">事业部:{{ dataSource.chargeDept }}</div><div class="mb-3">班组: {{ dataSource.groupName }}</div><div class="">联系人: ____________________</div></div><div class="flex-1 mb-2"><div class="mb-3">申请人:{{ dataSource.applicant }}</div><div class="mb-3">申请部门:{{ dataSource.applicantDept }}</div><div class="">联系电话: _____________________</div></div><div class="flex-1 mb-2"><div class="mb-3">工具属性:{{ dataSource.toolProperty }}</div><div class="mb-3">工厂: {{ dataSource.factoryName }}</div></div></div><div class="my-3 w-full"><table><colgroup><col width="50" /><col width="120" /><col width="150" /><col width="150" /><col width="100" /><col width="100" /><col width="100" /><col width="100" /></colgroup><tbody><tr height="32" class=""><td class="text-center font-bold">序号</td><td class="text-center font-bold">存货编码</td><td class="text-center font-bold">存货名称</td><td class="text-center font-bold">需求时间</td><td class="text-center font-bold">重要程度</td><td class="text-center font-bold">请购用途</td><td class="text-center font-bold">规格型号</td><!-- <td class="text-center font-bold">工具大类</td> --><td class="text-center font-bold">申领数量</td></tr><template v-for="(item, index) in dataSource.lists"><tr height="32"><td class="text-center">{{ index+1 }}</td><td class="text-center">{{ item.cInvCode }}</td><td class="text-center">{{ item.cInvName }}</td><td class="text-center">{{ item.demandTime&&item.demandTime.slice(0, 10) }}</td><td class="text-center">{{ item.significance }}</td><td class="text-center">{{ item.purpose }}</td><td class="text-center">{{ item.cInvStd }}</td><!-- <td class="text-center">{{ item.toolType }}</td> --><td class="text-center">{{ item.applicationQty }}</td></tr></template><tr height="32"><td class="text-center font-bold">合计:</td><td colspan="6" class="text-left"></td><td class="text-center">{{sum}}</td></tr><tr height="65"><td colspan="8" class="text-left ">备注:<br />1、请双方确认无误后签字确认,谢谢!</td></tr></tbody></table></div><div class="w-4/5 mt-2 flex justify-around"><div class=""><div class="">发起人签字:</div><div class="mt-2">发起日期:</div></div><div class=""><div class="">审批人签字:</div><div class="mt-2">审批日期:</div></div></div></div>

css

#printApply {display: none;
}
// 设置打印的时候,显示
#printApply {@media print {display: block;}
}#printApply table {border-top: 1px solid #333;border-left: 1px solid #333;border-spacing: 0;background-color: #fff;width: 100%;
}
#printApply table td {border-bottom: 1px solid #333;border-right: 1px solid #333;font-size: 14px;padding: 5px;
}

ts

import {Printer
} from "@element-plus/icons-vue";
import Print from "@/utils/print";const dataSource = ref({chargeDept: "",groupName: "",applicant: "",applicantDept: "",toolProperty: "",factoryName: "",lists: []
})
let sum = 0
const handlePrint = async (row) => {sum = 0dataSource.value = rowdataSource.value.lists.forEach((item) => {sum += item.applicationQty})setTimeout(() => {Print("#printApply").toPrint;},500)
};

注意:在主页面打印 需要给#printApply设置隐藏 设置打印的时候,再显示,即

#printApply {display: none;
}
#printApply {@media print {display: block;}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/53592.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

电脑技巧:如何在Win11电脑上调整设置,让屏幕更加护眼?

目录 一、调整屏幕亮度 二、启用夜间模式 三、调整色彩设置 四、使用第三方护眼软件 五、保持良好的用眼习惯 总结 随着长时间使用电脑的人越来越多,护眼问题也变得越来越重要。Win11作为更新的操作系统,提供了更多的设置选项来帮助我们保护眼睛。本文将详细介绍如何在…

清华计算几何--凸Polygon的相交问题

凸Polygon和相交定义 本节只讨论凸Polygon的问题&#xff0c;不涉及凹Polygon. 相交包含了边相交和完全包含。 凸Polygon相交的两个问题 Detection(检测) 判断两个凸Polygon是否相交&#xff0c;至于相交部分是什么不关心. Construction(构造) 求出两个凸Polygon具体相交…

AI基础 L9 Local Search II 局部搜索

Local Beam search 对于当前的所有k个状态&#xff0c;生成它们的所有可能后继状态。 检查生成的后继状态中是否有任何状态是解决方案。 如果所有后继状态都不是解决方案&#xff0c;则从所有后继状态中选择k个最佳状态。 当达到预设的迭代次数或满足某个终止条件时&#x…

Linux:归档及压缩

tar命令 • tar 集成备份工具 – -c&#xff1a;创建归档 – -x&#xff1a;释放归档 – -f&#xff1a;指定归档文件名称,必须在所有选项的最后 – -z、-j、-J&#xff1a;调用 .gz、.bz2、.xz 格式工具进行处理 – -t&#xff1a;显示归档中的文件清单 – -C&#xff1a;指定…

MES的“尽头”是什么?

01 MES的发展历程 要了解MES首先需要知道其发展历程。制造执行系统&#xff08;MES&#xff09;是随着制造业的发展逐步演变和成熟起来的。以下是MES发展的几个主要阶段&#xff1a; 第一阶段&#xff1a;数据收集与报告&#xff08;1980年代 - 1990年代&#xff09; 制造业…

[苍穹外卖]-05Redis快速入门

Redis入门 Redis是一个基于内存的key-value结构数据库 基于内存存储, 读写性能高适合存储热点数据(热点商品,咨询,新闻)企业应用广泛中文官网: Redis中文网英文网: https://rsdis.io 下载安装: Redis安装包分为Windows版本和Linux版本, Redis的windows版属于绿色软件, 解压后…

OCR技术视角:智能文档管理中的票据自动化识别与处理

在数字化转型的浪潮中&#xff0c;企业对于高效、自动化的文档管理需求日益增长。票据作为企业运营中不可或缺的部分&#xff0c;其识别与管理的智能化成为了提升工作效率的关键。本文将深入探讨智能文档系统中票据识别功能的原理、技术优势以及在不同行业中的应用实践&#xf…

观察者模式observer

允许一个对象将其状态的改变通知其他对象 当Editor调用openFile()和saveFile()时&#xff0c;它会通过EventManager的notify方法&#xff0c;通知所有订阅了这些事件的监听器。

828华为云征文|华为云Flexus X实例部署k3s与kuboard图形化管理工具

828华为云征文&#xff5c;华为云Flexus X实例部署k3s与kuboard图形化管理工具 华为云最近正在举办828 B2B企业节&#xff0c;Flexus X实例的促销力度非常大&#xff0c;特别适合那些对算力性能有高要求的小伙伴。如果你有自建MySQL、Redis、Nginx等服务的需求&#xff0c;一定…

算法分享——《双指针》

文章目录 ✅[《移动零》](https://leetcode.cn/problems/move-zeroes/)&#x1f339;题目描述&#xff1a;&#x1f697;代码实现&#xff1a;&#x1f634;代码解析&#xff1a; ✅[《复写零》](https://leetcode.cn/problems/duplicate-zeros/)&#x1f339;题目描述&#xf…

[数据集][目标检测]石油泄漏检测数据集VOC+YOLO格式6633张1类别

数据集格式&#xff1a;Pascal VOC格式YOLO格式(不包含分割路径的txt文件&#xff0c;仅仅包含jpg图片以及对应的VOC格式xml文件和yolo格式txt文件) 图片数量(jpg文件个数)&#xff1a;6633 标注数量(xml文件个数)&#xff1a;6633 标注数量(txt文件个数)&#xff1a;6633 标注…

吐血整理 ChatGPT 3.5/4.0 新手使用手册~ 【2024.09.04 更新】

以前我也是通过官网使用&#xff0c;但是经常被封号&#xff0c;就非常不方便&#xff0c;后来有朋友推荐国内工具&#xff0c;用了一阵之后&#xff0c;发现&#xff1a;稳定方便&#xff0c;用着也挺好的。 最新的 GPT-4o、4o mini&#xff0c;可搭配使用~ 1、 最新模型科普&…

【Qt】qt发布Release版本,打包.exe可执行文件

前言&#xff1a;Qt编译的可执行程序&#xff0c;如果直接运行&#xff0c;会出现0xc000007b报错&#xff0c;或者“由于占不到Qt5Network.dll,无法继续执行代码。重新安装程序可能会解决此问题”的报错&#xff0c;因为缺少相关的依赖包和动态库。 1、第一步&#xff1a;找到…

从电商行业的变化引出未来技术趋势

时间&#xff1a;2024年09月08日 作者&#xff1a;小蒋聊技术 邮箱&#xff1a;wei_wei10163.com 微信&#xff1a;wei_wei10 音频地址&#xff1a;喜马拉雅 希望大家帮个忙&#xff01;如果大家有工作机会&#xff0c;希望帮小蒋推荐一下&#xff0c;小蒋希望遇到一个认真…

Android 系统源码项目加载预编好的so库

Android 系统源码项目加载预编好的so库 文章目录 Android 系统源码项目加载预编好的so库一、前言二、源码中加载so1、Android.mk加载so加载so的主要相关代码&#xff1a; 2、Android.bp加载so&#xff08;1&#xff09;Android.mk使用源码命令编译成Android.bp&#xff08;2&am…

【C++】STL容器详解【下】

目录 一、list容器 1.1 list基本概念 1.2 lsit构造函数 1.3 list数据元素插入和删除操作 1.4 list大小操作 1.5 list赋值操作 1.6 list数据的存取 1.7 list反转排序 二、set/multiset容器 2.1 set/multiset基本概念 2.2 set构造函数 2.3 set赋值操作 2.4 set大小操…

Hash Table、HashMap、HashSet学习

文章目录 前言Hash Table&#xff08;散列表&#xff09;基本概念散列函数散列冲突&#xff08;哈希碰撞&#xff09;拉链法红黑树时间复杂度分析 HashMap基础方法使用基本的增删改查其他的方法 实现原理 HashSet基础操作去重原理 前言 本文用于介绍关于Hash Table、HashMap、…

【qt】多线程实现倒计时

1.界面设计 设置右边的intvalue从10开始倒计时 2.新建Thread类 新建Thread类&#xff0c;使其继承QThread类&#xff0c;多态重写run函数&#xff0c;相当于线程执行函数 3.重写run函数 重写run函数&#xff0c;让另一个进程每隔1s发出一个信号&#xff0c;主线程使用conne…

uniapp 全屏日历,动态无限加载

不好用请移至评论区揍我 原创代码,请勿转载,谢谢! 注:本人仅在微信小程序测试过,未在其他app/h5尝试过,按理说应该是可以的,代码没有引用任何第三方组件 日历中每个日期下方的空白部分均可自定义,写在代码中的<view class="item">我是内容</view>…

Prometheus 服务监控

目录 Prometheus 是什么 Prometheus 的特点 Prometheus 的组件 Prometheus 的指标 Prometheus 的使用场景 Prometheus 的安装 方式一&#xff1a;压缩包方式安装 方式二&#xff1a;Docker 方式安装 Prometheus 的 Web UI 面板介绍 Prometheus 目录结构介绍 Prometh…