// 主要代码
<!-- #ifdef APP-PLUS -->
<web-view :src="url"></web-view>
<!-- #endif -->
// encodeURIComponent 不转有时会报错;url后端pdf地址
//1. html版本
this.url = `/hybrid/html/web/viewer.html?file=${encodeURIComponent(url)}`;
//2. pdf版可以手动放大, 简单版
this.url = `/hybrid/pdf/pdf.html?url=${encodeURIComponent(url)}`;
uni-app实现APP端在线预览PDF
于 2022-06-08 14:10:18 首次发布