|
@@ -41,17 +41,19 @@ var documentList = new Vue({
|
|
|
},
|
|
|
download:function() {
|
|
|
var _self = this;
|
|
|
+ // window.open('/document/downFile?pdfId='+_self.pdfId);
|
|
|
if(_self.is_Wechat_bowcr){
|
|
|
_self.isWechatShowToest = true
|
|
|
}else{
|
|
|
var BLOB = new Blob(['/7qBjQ4SKBd.txt']);
|
|
|
var url = window.URL.createObjectURL(BLOB);
|
|
|
- var link = document.createElement('a');
|
|
|
- link.style.display = 'none';
|
|
|
- link.href = '/7qBjQ4SKBd.txt';
|
|
|
- link.setAttribute('download', '7qBjQ4SKBd.txt');
|
|
|
- document.body.appendChild(link);
|
|
|
- link.click();
|
|
|
+ var DownloadLink = document.createElement('a');
|
|
|
+ DownloadLink.style.display = 'none';
|
|
|
+ DownloadLink.href ='https://caimei-oss.oss-cn-shenzhen.aliyuncs.com/bb40705c864f47a5b99f8df6a4330b58.pdf?Expires=1609988547&OSSAccessKeyId=LTAI4GBL3o4YkWnbKYgf2Xia&Signature=%2B3mqH81JtbVl9shwqndxGL2Ivco%3D';
|
|
|
+ DownloadLink.setAttribute('download', 'bb40705c864f47a5b99f8df6a4330b58.pdf');
|
|
|
+ document.body.appendChild(DownloadLink);
|
|
|
+ DownloadLink.click();
|
|
|
+ document.body.removeChild(DownloadLink);
|
|
|
}
|
|
|
},
|
|
|
// PdfDetails:function(){//跳转
|