<web-view :src="link"></web-view>
wx.getSystemInfo({
success: function(res) {
//如果是ios的话可以直接在webview中打开
if (res.system.indexOf('iOS')!=-1){
wx.hideToast();
self.link=decodeURIComponent(query.returnUrl);
}else{
self.getUrl();
}
}
});
//安卓的话就需要下载再预览
getUrl(){
var query=this.$root.$mp.query;
var url=decodeURIComponent(query.returnUrl);
var dotnum=url.lastIndexOf('.');
var type=url.substring(dotnum+1,url.length);//获取文件类型
wx.downloadFile({
url: decodeURIComponent(query.returnUrl), //要预览的文件的地址
success: function (res) {
if (res.statusCode === 200) { //成功
var Path = decodeURIComponent(res.tempFilePath); //返回的打开文档的地址
wx.openDocument({
filePath: Path, //要打开的文件路径
fileType:type, //类型一定要写否则会打不开
success: function (res) {
wx.hideToast();
wx.navigateBack({
delta:1 //返回上一级,不写的话,返回会是一个空白页面体验差
});
}
})
}
},
fail: function (res) {
wx.hideToast();
wx.showToast({
title:'文件预览失败',
duration:2000
})
}
});
},