兼容微信小程序/h5/ios/android
在微信小程序环境下需要配置pdf域名
pdfPreview(url){var title = '预览'uni.showLoading({ title: '加载中', mask: true })//由于android 下webview无法直接打开pdf,需要先下载uni.getSystemInfo({success: res => {console.log(res.platform);// if (res.platform === 'android') {wx.downloadFile({url: url,// filePath: wx.env.USER_DATA_PATH + "/我的协议.pdf",success: function(res) {const filePath = res.tempFilePath;uni.showLoading({ title: '正在打开', mask: true })wx.openDocument({filePath: filePath,showMenu: true, // 显示右上角菜单fileType: "pdf",success: function(res) {uni.hideLoading()console.log('打开文档成功');},fail: function(err) {uni.hideLoading()console.log('fail:' + JSON.stringify(err));}});}});// } else {// this.$tab.navigateTo(`/pagesA/common/webview/index?title=${title}&url=${url}`)// }}});
},