|
|
|
@ -353,13 +353,131 @@ export class PlanRecordComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//打开三维预案弹窗
|
|
|
|
|
oopen3Dshow() { |
|
|
|
|
this.dialog.open(recordshow3D, { |
|
|
|
|
width: "1650px", |
|
|
|
|
height: "850px", |
|
|
|
|
data: { url: this.thirdPartyURL, twoOrthree: this.twoOrthree }, |
|
|
|
|
}); |
|
|
|
|
selectedFileData; |
|
|
|
|
open3Dshow() { |
|
|
|
|
// console.log("三维预案1", this.thirdPartyURL);
|
|
|
|
|
// console.log("三维预案2", this.twoOrthree);
|
|
|
|
|
// return
|
|
|
|
|
if (this.twoOrthree === 2) { |
|
|
|
|
this.dialog.open(recordshow3D, { |
|
|
|
|
width: "1650px", |
|
|
|
|
height: "850px", |
|
|
|
|
data: { url: this.thirdPartyURL, twoOrthree: this.twoOrthree }, |
|
|
|
|
}); |
|
|
|
|
} else if (this.twoOrthree === 3) { |
|
|
|
|
console.log(this.planData); |
|
|
|
|
if (this.planData.attachmentUrls.length !== 0) { |
|
|
|
|
this.downloadisLoading = true; |
|
|
|
|
this.http |
|
|
|
|
.get( |
|
|
|
|
"/api/ObjectMetadata/PlanPlatform/" + |
|
|
|
|
this.planData.attachmentUrls[0] |
|
|
|
|
) |
|
|
|
|
.subscribe((data: any) => { |
|
|
|
|
console.log("源文件", data); |
|
|
|
|
this.selectedFileData = data; |
|
|
|
|
this.downloadFile(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//初始化下载
|
|
|
|
|
downloadProgress = 0; |
|
|
|
|
downloadisLoading = false; |
|
|
|
|
downloadFile() { |
|
|
|
|
this.downloadProgress = 0; |
|
|
|
|
let file = this.selectedFileData; |
|
|
|
|
let fileSize = file.fileLength; //下载文件的总大小
|
|
|
|
|
let shardSize = 10 * 1024 * 1024; //文件大小是否大于10MB
|
|
|
|
|
console.log(file); |
|
|
|
|
if (file && fileSize <= shardSize) { |
|
|
|
|
//<=10MB时直接下载
|
|
|
|
|
|
|
|
|
|
this.http |
|
|
|
|
.get(`/api/Objects/PlanPlatform/${file.objectName}`, { |
|
|
|
|
responseType: "blob", |
|
|
|
|
}) |
|
|
|
|
.subscribe((data) => { |
|
|
|
|
console.log(data); |
|
|
|
|
let url = window.URL.createObjectURL(new Blob([data])); //createObjectURL创建一个下载Blob的url地址
|
|
|
|
|
let link = document.createElement("a"); |
|
|
|
|
link.style.display = "none"; |
|
|
|
|
link.href = url; |
|
|
|
|
|
|
|
|
|
let suffix = file.objectName.substring( |
|
|
|
|
file.objectName.lastIndexOf(".") + 1, |
|
|
|
|
file.objectName.length |
|
|
|
|
); |
|
|
|
|
link.setAttribute( |
|
|
|
|
"download", |
|
|
|
|
file.fileName |
|
|
|
|
? file.fileName |
|
|
|
|
: file.objectName.split("/")[ |
|
|
|
|
file.objectName.split("/").length - 1 |
|
|
|
|
] |
|
|
|
|
); |
|
|
|
|
document.body.appendChild(link); |
|
|
|
|
link.click(); |
|
|
|
|
this.downloadisLoading = false; |
|
|
|
|
}); |
|
|
|
|
} else if (file && fileSize > shardSize) { |
|
|
|
|
//>10MB时分块下载
|
|
|
|
|
this.blockingDownload(); //分段下载
|
|
|
|
|
this.downloadisLoading = true; |
|
|
|
|
// this.setFileLoading()
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// //分段下载并合并
|
|
|
|
|
async blockingDownload() { |
|
|
|
|
let file = this.selectedFileData; |
|
|
|
|
let fileSize = file.fileLength; //下载文件的总大小
|
|
|
|
|
let shardSize = 3 * 1024 * 1024; //3MB一个分片
|
|
|
|
|
let allSlice = Math.ceil(fileSize / shardSize); //总文件/3MB===共分多少段
|
|
|
|
|
let allFile: any = []; //所有的file分段
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < allSlice; i++) { |
|
|
|
|
let start = i * shardSize; //每次下载文件开始位置
|
|
|
|
|
let end = Math.min(fileSize, start + shardSize - 1); //每次下载文件结束为止
|
|
|
|
|
|
|
|
|
|
let result = await new Promise((result, reject) => { |
|
|
|
|
this.http |
|
|
|
|
.get(`/api/Objects/PlanPlatform/${file.objectName}`, { |
|
|
|
|
headers: { range: `bytes= ${start}-${end}` }, |
|
|
|
|
responseType: "blob", |
|
|
|
|
}) |
|
|
|
|
.subscribe((data) => { |
|
|
|
|
result(data); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
allFile.push(result); |
|
|
|
|
this.downloadProgress = Number((i / allSlice).toFixed(2)) * 100; |
|
|
|
|
|
|
|
|
|
if (allFile.length === allSlice) { |
|
|
|
|
//合并文件输出给浏览器
|
|
|
|
|
let url = window.URL.createObjectURL(new Blob(allFile)); //createObjectURL创建一个下载Blob的url地址
|
|
|
|
|
let link = document.createElement("a"); |
|
|
|
|
link.style.display = "none"; |
|
|
|
|
link.href = url; |
|
|
|
|
let suffix = file.objectName.substring( |
|
|
|
|
file.objectName.lastIndexOf(".") + 1, |
|
|
|
|
file.objectName.length |
|
|
|
|
); |
|
|
|
|
link.setAttribute( |
|
|
|
|
"download", |
|
|
|
|
file.fileName |
|
|
|
|
? file.fileName |
|
|
|
|
: file.objectName.split("/")[file.objectName.split("/").length - 1] |
|
|
|
|
); |
|
|
|
|
document.body.appendChild(link); |
|
|
|
|
link.click(); |
|
|
|
|
// this.downloadProgress = 0
|
|
|
|
|
this.downloadisLoading = false; |
|
|
|
|
// this.setFileLoading()
|
|
|
|
|
} |
|
|
|
|
} //for循环
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//判断iframe是否加载完成
|
|
|
|
|
iftrue = true; |
|
|
|
|
ifranmeLoad() { |
|
|
|
|