<div @click="getPDF">查看体检报告</div>
getPDF() {
	uni.downloadFile({
		url: `${this.$baseURL}/file/download?id=${this.pdfFileId}`,//编写在线的pdf地址
		success: function(res) {
			const filePath = res.tempFilePath;
			uni.openDocument({
				filePath: filePath,
				fileType: 'pdf',//这里类型必须是pdf
				success: function(res) {
					console.log('打开PDF成功');
				},
				fail: function(res) {
					console.log('打开PDF失败', res);
				}
			})
		},
		fail: function(res) {
			console.log('下载PDF失败', res);
		}
	})
}









![[⑥ADRV902x]: 软件系统初始化流程学习](https://img-blog.csdnimg.cn/136226059f204e5d99d98f14c5fc5363.png)

![易宝OA系统ExecuteSqlForSingle接口SQL注入漏洞复现 [附POC]](https://img-blog.csdnimg.cn/05e6b15e067648e7803571d0cc8428f3.png)








