|
|
|
@ -41,21 +41,47 @@ export class ExternalLinksPlanComponent implements OnInit {
|
|
|
|
|
); |
|
|
|
|
sessionStorage.setItem("editable", "0"); |
|
|
|
|
sessionStorage.setItem("planName", data.name); |
|
|
|
|
this.router.navigate([`/linksPlan`], { |
|
|
|
|
queryParams: { |
|
|
|
|
let queryParams = {}; |
|
|
|
|
if (data.webTextData && data.planType === 16) { |
|
|
|
|
queryParams = { |
|
|
|
|
id: data.companyId, |
|
|
|
|
planId: data.id, |
|
|
|
|
orName: data.company.organizationName, |
|
|
|
|
orId: data.company.organizationId, |
|
|
|
|
}, |
|
|
|
|
companyId: data.companyId, |
|
|
|
|
planName: data.name, |
|
|
|
|
unitName: data.companyName, |
|
|
|
|
planCategory: data.planCategory, |
|
|
|
|
unitTypeId: data.company.buildingTypes[0].id, |
|
|
|
|
pattern: "false", |
|
|
|
|
}; |
|
|
|
|
} else { |
|
|
|
|
queryParams = { |
|
|
|
|
id: data.companyId, |
|
|
|
|
planId: data.id, |
|
|
|
|
orName: data.company.organizationName, |
|
|
|
|
orId: data.company.organizationId, |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
this.router.navigate([`/linksPlan`], { |
|
|
|
|
queryParams: queryParams, |
|
|
|
|
}); |
|
|
|
|
this.planData = data; |
|
|
|
|
|
|
|
|
|
//如果是查看文件类型
|
|
|
|
|
|
|
|
|
|
console.log("data.planType", data.planType); |
|
|
|
|
if (data.planType != 1 && data.planType != 2) { |
|
|
|
|
this.fetchUrl = data.attachmentUrls[0]; |
|
|
|
|
this.fetchUrl = data.attachmentUrls ? data.attachmentUrls[0] : ""; |
|
|
|
|
var index = this.fetchUrl.indexOf("/"); |
|
|
|
|
//图片
|
|
|
|
|
|
|
|
|
|
// 在线编制预案
|
|
|
|
|
if (data.webTextData && data.planType === 16) { |
|
|
|
|
this.showType = 2; |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//全景图图片
|
|
|
|
|
if (this.fetchUrl.substr(0, index) == "psw") { |
|
|
|
|
this.showType = 1; |
|
|
|
|
var obj = document.getElementById("viewer"); |
|
|
|
@ -122,21 +148,6 @@ export class ExternalLinksPlanComponent implements OnInit {
|
|
|
|
|
if (this.planData.planMode == 1 || this.planData.planMode == 2) { |
|
|
|
|
//预案planMode=2时, 跳查看页面组件
|
|
|
|
|
this.showType = 3; |
|
|
|
|
// this.http.get(`/api/Plans/${data.companyId}`).subscribe((data: any) => {
|
|
|
|
|
// console.log(data);
|
|
|
|
|
// data && data.company ? (this.companyData = data.company) : null;
|
|
|
|
|
// sessionStorage.setItem(
|
|
|
|
|
// "buildingTypeId",
|
|
|
|
|
// this.companyData.buildingTypes.length
|
|
|
|
|
// ? this.companyData.buildingTypes[0].id
|
|
|
|
|
// : undefined
|
|
|
|
|
// );
|
|
|
|
|
// sessionStorage.setItem("companyId", data.companyId);
|
|
|
|
|
// sessionStorage.setItem("planId", this.planId);
|
|
|
|
|
// sessionStorage.setItem("editable", "0");
|
|
|
|
|
// sessionStorage.setItem("planName", this.planData.name);
|
|
|
|
|
|
|
|
|
|
// });
|
|
|
|
|
} else if (this.planData.planMode == 3) { |
|
|
|
|
//网页地址
|
|
|
|
|
let localhostPath = window.document.location.href.substring( |
|
|
|
|