|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
* @Author: sueRimn |
|
|
|
|
* @Date: 2020-12-25 16:13:50 |
|
|
|
|
* @LastEditors: sueRimn |
|
|
|
|
* @LastEditTime: 2021-02-06 16:44:05 |
|
|
|
|
* @LastEditTime: 2021-02-07 14:37:44 |
|
|
|
|
*/ |
|
|
|
|
import { Component, Inject, OnInit } from '@angular/core'; |
|
|
|
|
import { FormControl } from '@angular/forms'; |
|
|
|
@ -156,8 +156,10 @@ export class WaitExamineerComponent implements OnInit {
|
|
|
|
|
radioClick(e,item){ |
|
|
|
|
//e.target.parentElement.bgColor='#2196F3'
|
|
|
|
|
console.log(e,item) |
|
|
|
|
this.organizationName='' |
|
|
|
|
this.id=item.id |
|
|
|
|
this.fetchUrl='' |
|
|
|
|
this.viewer={} |
|
|
|
|
this.http.get(`/api/PlanComponents/${item.itemId}`).subscribe((data:any)=>{ |
|
|
|
|
console.log(data) |
|
|
|
|
this.companyId=data.companyId |
|
|
|
@ -242,20 +244,35 @@ export class WaitExamineerComponent implements OnInit {
|
|
|
|
|
//查看二维三维预案
|
|
|
|
|
thirdPartyURL |
|
|
|
|
planType |
|
|
|
|
twoOrthree |
|
|
|
|
handleData () { |
|
|
|
|
this.compantData={name:'',buildingTypes:[],address:''} |
|
|
|
|
this.planType = this.planData.planMode |
|
|
|
|
let data = this.planData |
|
|
|
|
console.log(this.planData) |
|
|
|
|
console.log(data) |
|
|
|
|
if(data.planType==1){ |
|
|
|
|
this.twoOrthree=2 |
|
|
|
|
}else if(data.planType==2){ |
|
|
|
|
this.twoOrthree=3 |
|
|
|
|
} |
|
|
|
|
if (this.planData.planMode==0) { //预案planMode=0时, 查看word
|
|
|
|
|
//this.lookWord()
|
|
|
|
|
} else if (this.planData.planMode==1) { //预案planMode=1时, 解析文档
|
|
|
|
|
|
|
|
|
|
} else if (this.planData.planMode==2) { //预案planMode=2时, 跳查看页面组件
|
|
|
|
|
this.showtype=2 |
|
|
|
|
this.http.get(`/api/Plans/${data.companyId}`).subscribe((data:any)=>{ |
|
|
|
|
data && data.company? this.compantData = data.company : null |
|
|
|
|
}) |
|
|
|
|
sessionStorage.setItem("buildingTypeId", this.compantData.buildingTypes.length? this.compantData.buildingTypes[0].id: undefined); |
|
|
|
|
sessionStorage.setItem("companyId",this.companyId); |
|
|
|
|
sessionStorage.setItem("planId",this.id); |
|
|
|
|
sessionStorage.setItem("editable",'0'); |
|
|
|
|
} else if (this.planData.planMode==3) { //预案planMode=3时, 第三方网址
|
|
|
|
|
sessionStorage.setItem("planName",data.name) |
|
|
|
|
let companyId = sessionStorage.getItem("companyId") |
|
|
|
|
this.thirdPartyURL=this.sanitizer.bypassSecurityTrustResourceUrl(`/planAudit/planpass?id=${this.companyId}&companyName=${data.companyName}&auditPlanId=${data.id}&auditStatus=${data.auditStatus}&planType=1`); |
|
|
|
|
//window.open(`/keyUnit/viewunitinfoplan?id=${companyId}`)
|
|
|
|
|
} else if (this.planData.planMode==3) { //预案planMode=3时, 第三方网址'
|
|
|
|
|
this.showtype=2 |
|
|
|
|
this.http.get(`/api/Plans/${data.companyId}`).subscribe((data:any)=>{ |
|
|
|
|
data && data.company? this.compantData = data.company : null |
|
|
|
@ -268,7 +285,7 @@ export class WaitExamineerComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//打开三维预案弹窗
|
|
|
|
|
oopen3Dshow(){ |
|
|
|
|
this.dialog.open(show3D,{width:'1550px',height:'850px',data:{url:this.thirdPartyURL}}); |
|
|
|
|
this.dialog.open(show3D,{width:'1650px',height:'850px',data:{url:this.thirdPartyURL,twoOrthree:this.twoOrthree}}); |
|
|
|
|
} |
|
|
|
|
//变更数据和全部数据切换按钮
|
|
|
|
|
buttonChange(){ |
|
|
|
@ -505,7 +522,7 @@ export class WaitExamineerComponent implements OnInit {
|
|
|
|
|
export class show3D{ |
|
|
|
|
constructor(private sanitizer: DomSanitizer,public dialogRef: MatDialogRef<show3D>,@Inject(MAT_DIALOG_DATA) public data,public dialog: MatDialog) {} |
|
|
|
|
ngOnInit(): void { |
|
|
|
|
console.log(this.data.url.changingThisBreaksApplicationSecurity) |
|
|
|
|
console.log(this.data) |
|
|
|
|
this.threedUrl=this.sanitizer.bypassSecurityTrustResourceUrl(this.data.url.changingThisBreaksApplicationSecurity) |
|
|
|
|
} |
|
|
|
|
threedUrl |
|
|
|
|