第一步:
将这行代码替换
this.pdfSrc = pdf.createLoadingTask(this.pdfSrc);
为
let CMAP_URL = "https://unpkg.com/pdfjs-dist@2.0.943/cmaps/";
this.pdfSrc = pdf.createLoadingTask({
url: this.$route.query.pathUrl,
cMapUrl: CMAP_URL,
cMapPacked: true,
});
第二步:
在node_modules/pdfjs-dist/build/pdf.worker.js
和node_modules/pdfjs-dist/es5/build/pdf.worker.js
注释掉一行代码
if (data.fieldType === "Sig") {
data.fieldValue = null;
// 注释掉底下这行 就可以显示电子签章
// _this3.setFlags(_util.AnnotationFlag.HIDDEN);
}