|
@@ -2859,7 +2859,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.infoData.showType = 2;
|
|
|
this.pptImgUrl2.infoData.url =
|
|
|
- "https://view.officeapps.live.com/op/view.aspx?src=" + u;
|
|
|
+ "https://view.officeapps.live.com/op/view.aspx?src=" + encodeURIComponent(u);
|
|
|
} else if (
|
|
|
u.split(".")[u.split(".").length - 1].toLocaleUpperCase() == "PDF"
|
|
|
) {
|
|
@@ -2895,7 +2895,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.overData.driData.showType = 2;
|
|
|
this.pptImgUrl2.overData.driData.url =
|
|
|
- "https://view.officeapps.live.com/op/view.aspx?src=" + u;
|
|
|
+ "https://view.officeapps.live.com/op/view.aspx?src=" + encodeURIComponent(u);
|
|
|
} else if (
|
|
|
u.split(".")[u.split(".").length - 1].toLocaleUpperCase() == "PDF"
|
|
|
) {
|
|
@@ -2922,7 +2922,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.overData.tarData.showType = 2;
|
|
|
this.pptImgUrl2.overData.tarData.url =
|
|
|
- "https://view.officeapps.live.com/op/view.aspx?src=" + u;
|
|
|
+ "https://view.officeapps.live.com/op/view.aspx?src=" + encodeURIComponent(u);
|
|
|
} else if (
|
|
|
u.split(".")[u.split(".").length - 1].toLocaleUpperCase() == "PDF"
|
|
|
) {
|
|
@@ -2949,7 +2949,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.overData.actData.showType = 2;
|
|
|
this.pptImgUrl2.overData.actData.url =
|
|
|
- "https://view.officeapps.live.com/op/view.aspx?src=" + u;
|
|
|
+ "https://view.officeapps.live.com/op/view.aspx?src=" + encodeURIComponent(u);
|
|
|
} else if (
|
|
|
u.split(".")[u.split(".").length - 1].toLocaleUpperCase() == "PDF"
|
|
|
) {
|
|
@@ -2976,7 +2976,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.proData[i].showType = 2;
|
|
|
this.pptImgUrl2.proData[i].url =
|
|
|
- "https://view.officeapps.live.com/op/view.aspx?src=" + u;
|
|
|
+ "https://view.officeapps.live.com/op/view.aspx?src=" + encodeURIComponent(u);
|
|
|
} else if (
|
|
|
u.split(".")[u.split(".").length - 1].toLocaleUpperCase() == "PDF"
|
|
|
) {
|
|
@@ -3003,7 +3003,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.excData.showType = 2;
|
|
|
this.pptImgUrl2.excData.url =
|
|
|
- "https://view.officeapps.live.com/op/view.aspx?src=" + u;
|
|
|
+ "https://view.officeapps.live.com/op/view.aspx?src=" + encodeURIComponent(u);
|
|
|
} else if (
|
|
|
u.split(".")[u.split(".").length - 1].toLocaleUpperCase() == "PDF"
|
|
|
) {
|
|
@@ -3030,7 +3030,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.effData.showType = 2;
|
|
|
this.pptImgUrl2.effData.url =
|
|
|
- "https://view.officeapps.live.com/op/view.aspx?src=" + u;
|
|
|
+ "https://view.officeapps.live.com/op/view.aspx?src=" + encodeURIComponent(u);
|
|
|
} else if (
|
|
|
u.split(".")[u.split(".").length - 1].toLocaleUpperCase() == "PDF"
|
|
|
) {
|
|
@@ -3100,7 +3100,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.infoData.url =
|
|
|
"https://view.officeapps.live.com/op/view.aspx?src=" +
|
|
|
- this.pptImgUrl2.infoData.url;
|
|
|
+ encodeURIComponent(this.pptImgUrl2.infoData.url);
|
|
|
this.pptImgUrl2.infoData.showType = 2;
|
|
|
} else if (
|
|
|
this.pptImgUrl2.infoData.url
|
|
@@ -3152,7 +3152,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.overData.driData.url =
|
|
|
"https://view.officeapps.live.com/op/view.aspx?src=" +
|
|
|
- this.pptImgUrl2.overData.driData.url;
|
|
|
+ encodeURIComponent(this.pptImgUrl2.overData.driData.url);
|
|
|
this.pptImgUrl2.overData.driData.showType = 2;
|
|
|
} else if (
|
|
|
this.pptImgUrl2.overData.driData.url
|
|
@@ -3196,7 +3196,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.overData.tarData.url =
|
|
|
"https://view.officeapps.live.com/op/view.aspx?src=" +
|
|
|
- this.pptImgUrl2.overData.tarData.url;
|
|
|
+ encodeURIComponent(this.pptImgUrl2.overData.tarData.url);
|
|
|
this.pptImgUrl2.overData.tarData.showType = 2;
|
|
|
} else if (
|
|
|
this.pptImgUrl2.overData.tarData.url
|
|
@@ -3240,7 +3240,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.overData.actData.url =
|
|
|
"https://view.officeapps.live.com/op/view.aspx?src=" +
|
|
|
- this.pptImgUrl2.overData.actData.url;
|
|
|
+ encodeURIComponent(this.pptImgUrl2.overData.actData.url);
|
|
|
this.pptImgUrl2.overData.actData.showType = 2;
|
|
|
} else if (
|
|
|
this.pptImgUrl2.overData.actData.url
|
|
@@ -3282,7 +3282,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.proData[i].url =
|
|
|
"https://view.officeapps.live.com/op/view.aspx?src=" +
|
|
|
- this.pptImgUrl2.proData[i].url;
|
|
|
+ encodeURIComponent(this.pptImgUrl2.proData[i].url);
|
|
|
this.pptImgUrl2.proData[i].showType = 2;
|
|
|
} else if (
|
|
|
this.pptImgUrl2.proData[i].url
|
|
@@ -3324,7 +3324,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.excData.url =
|
|
|
"https://view.officeapps.live.com/op/view.aspx?src=" +
|
|
|
- this.pptImgUrl2.excData.url;
|
|
|
+ encodeURIComponent(this.pptImgUrl2.excData.url);
|
|
|
this.pptImgUrl2.excData.showType = 2;
|
|
|
} else if (
|
|
|
this.pptImgUrl2.excData.url
|
|
@@ -3365,7 +3365,7 @@ export default {
|
|
|
) {
|
|
|
this.pptImgUrl2.effData.url =
|
|
|
"https://view.officeapps.live.com/op/view.aspx?src=" +
|
|
|
- this.pptImgUrl2.effData.url;
|
|
|
+ encodeURIComponent(this.pptImgUrl2.effData.url);
|
|
|
this.pptImgUrl2.effData.showType = 2;
|
|
|
} else if (
|
|
|
this.pptImgUrl2.effData.url
|
|
@@ -3395,63 +3395,50 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
downloadFile(url) {
|
|
|
- // var imgBox = [
|
|
|
- // "BMP",
|
|
|
- // "PJP",
|
|
|
- // "APNG",
|
|
|
- // "PNG",
|
|
|
- // "JPG",
|
|
|
- // "GIF",
|
|
|
- // "SVG",
|
|
|
- // "JPEG",
|
|
|
- // "JPG",
|
|
|
- // "ICO",
|
|
|
- // "PGPEG",
|
|
|
- // "AVIF",
|
|
|
- // ];
|
|
|
- // if (
|
|
|
- // imgBox.indexOf(
|
|
|
- // url
|
|
|
- // .split(".")
|
|
|
- // [url.split(".").length - 1].toLocaleUpperCase()
|
|
|
- // ) != -1
|
|
|
- // ) {
|
|
|
- // download = url;
|
|
|
- // }
|
|
|
- let _url = "";
|
|
|
+ var credentials = {
|
|
|
+ accessKeyId: "AKIATLPEDU37QV5CHLMH",
|
|
|
+ secretAccessKey: "Q2SQw37HfolS7yeaR1Ndpy9Jl4E2YZKUuuy2muZR",
|
|
|
+ }; //秘钥形式的登录上传
|
|
|
+ window.AWS.config.update(credentials);
|
|
|
+ window.AWS.config.region = "cn-northwest-1"; //设置区域
|
|
|
+ let url2 = url;
|
|
|
+ let _url2 = "";
|
|
|
if (
|
|
|
- url.indexOf("https://view.officeapps.live.com/op/view.aspx?src=") != -1
|
|
|
+ url2.indexOf("https://view.officeapps.live.com/op/view.aspx?src=") != -1
|
|
|
) {
|
|
|
- _url = url.split(
|
|
|
+ _url2 = url2.split(
|
|
|
"https://view.officeapps.live.com/op/view.aspx?src="
|
|
|
)[1];
|
|
|
} else {
|
|
|
- _url = url;
|
|
|
+ _url2 = url2;
|
|
|
}
|
|
|
- const x = new XMLHttpRequest();
|
|
|
- x.open("GET", _url, true);
|
|
|
- x.responseType = "blob";
|
|
|
- x.onload = function (e) {
|
|
|
- // const url = window.URL.createObjectURL(x.response);
|
|
|
- // const a = document.createElement("a");
|
|
|
- // a.href = url;
|
|
|
- // a.target = "_blank";
|
|
|
- // a.download = url;
|
|
|
- // a.click();
|
|
|
- // a.remove();
|
|
|
- let content = x.response;
|
|
|
- let elink = document.createElement("a");
|
|
|
- elink.download = decodeURI(
|
|
|
- _url.split("https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/")[1]
|
|
|
- );
|
|
|
- elink.style.display = "none";
|
|
|
- let blob = new Blob([content]);
|
|
|
- elink.href = URL.createObjectURL(blob);
|
|
|
- document.body.appendChild(elink);
|
|
|
- elink.click();
|
|
|
- document.body.removeChild(elink);
|
|
|
+ const loading2 = this.$loading.service({
|
|
|
+ background: "rgba(255, 255, 255, 0.7)",
|
|
|
+ target: document.body,
|
|
|
+ text: "文件加载中...",
|
|
|
+ });
|
|
|
+ var s3 = new window.AWS.S3({ params: { Bucket: "ccrb" } });
|
|
|
+ let name = decodeURIComponent(_url2.split("https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/")[1])
|
|
|
+ var params = {
|
|
|
+ Bucket: "ccrb",
|
|
|
+ Key: name
|
|
|
};
|
|
|
- x.send();
|
|
|
+ s3.getObject(params, function (err, data) {
|
|
|
+ loading2.close();
|
|
|
+ if (err) console.log(err, err.stack); // an error occurred
|
|
|
+ else {
|
|
|
+ let url = window.URL.createObjectURL(new Blob([data.Body]));
|
|
|
+ let a = document.createElement("a");
|
|
|
+ a.name = name;
|
|
|
+ a.href = url;
|
|
|
+ a.download = name;
|
|
|
+ a.click();
|
|
|
+ console.log(data);
|
|
|
+ } // sxuccessful response
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
+ return;
|
|
|
},
|
|
|
jump(t) {
|
|
|
var a = document.getElementById(t);
|
|
@@ -3549,7 +3536,7 @@ export default {
|
|
|
-1
|
|
|
) {
|
|
|
this.pptImgUrl =
|
|
|
- "https://view.officeapps.live.com/op/view.aspx?src=" + u;
|
|
|
+ "https://view.officeapps.live.com/op/view.aspx?src=" + encodeURIComponent(u);
|
|
|
this.showPDF = false;
|
|
|
this.dialogVisible = true;
|
|
|
} else if (
|