|
|
|
@ -167,10 +167,12 @@ export class WaitExamineerComponent implements OnInit {
|
|
|
|
|
differentContentOfPicture: any//当前单位变更数据 之 实景图
|
|
|
|
|
radioClick(e, item) { |
|
|
|
|
this.selectedItem = item |
|
|
|
|
|
|
|
|
|
console.log(item) |
|
|
|
|
// console.log('当前选择的信息',JSON.parse(this.selectedItem.differentContent) )
|
|
|
|
|
if(item.contentType == 11){ |
|
|
|
|
if(item.contentType == 11 && this.selectedItem.differentContent){ |
|
|
|
|
|
|
|
|
|
let differentContent = JSON.parse(this.selectedItem.differentContent) |
|
|
|
|
|
|
|
|
|
// 单位信息
|
|
|
|
|
this.differentContentOfUnitInfo = differentContent.filter(item => item.propertyName == 'basicInfo') |
|
|
|
|
// 实景图
|
|
|
|
@ -181,7 +183,6 @@ export class WaitExamineerComponent implements OnInit {
|
|
|
|
|
this.differentContentOfBuildingsInfo.childrens.forEach(element => { |
|
|
|
|
element.childrens = element.childrens.filter(item => item.isObj == false) |
|
|
|
|
}); |
|
|
|
|
console.log('当前选择的单位的实景图',this.differentContentOfBuildingsInfo) |
|
|
|
|
//功能分区
|
|
|
|
|
let differentContentOfFunction = JSON.parse(JSON.stringify(differentContent.filter(item => item.propertyName == 'buildings')[0])) |
|
|
|
|
this.differentContentOfFunction = [] |
|
|
|
|