|
|
@ -4,7 +4,7 @@ |
|
|
|
* @Author: sueRimn |
|
|
|
* @Author: sueRimn |
|
|
|
* @Date: 2021-06-16 13:56:54 |
|
|
|
* @Date: 2021-06-16 13:56:54 |
|
|
|
* @LastEditors: sueRimn |
|
|
|
* @LastEditors: sueRimn |
|
|
|
* @LastEditTime: 2021-06-17 17:05:09 |
|
|
|
* @LastEditTime: 2021-06-22 17:16:01 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
import { HttpClient } from '@angular/common/http'; |
|
|
|
import { Component, Inject, OnInit, Renderer2, ViewChild, Input } from '@angular/core'; |
|
|
|
import { Component, Inject, OnInit, Renderer2, ViewChild, Input } from '@angular/core'; |
|
|
@ -30,6 +30,7 @@ export class CreatePlanOnlineFiveComponent implements OnInit { |
|
|
|
console.log('级别', this.planLevel) |
|
|
|
console.log('级别', this.planLevel) |
|
|
|
this.getTemplateData() |
|
|
|
this.getTemplateData() |
|
|
|
this.getUnitData() |
|
|
|
this.getUnitData() |
|
|
|
|
|
|
|
this.getAllBuildings() |
|
|
|
this.tree = { |
|
|
|
this.tree = { |
|
|
|
json: this.treedate, |
|
|
|
json: this.treedate, |
|
|
|
config: this.treeConfig |
|
|
|
config: this.treeConfig |
|
|
@ -77,6 +78,8 @@ export class CreatePlanOnlineFiveComponent implements OnInit { |
|
|
|
this.getAllBuildings() |
|
|
|
this.getAllBuildings() |
|
|
|
this.getSitePlan() |
|
|
|
this.getSitePlan() |
|
|
|
this.getRealPicture() |
|
|
|
this.getRealPicture() |
|
|
|
|
|
|
|
}else if(this.selectedItem == '单位概况'){ |
|
|
|
|
|
|
|
//this.getAllBuildings()
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -230,6 +233,12 @@ export class CreatePlanOnlineFiveComponent implements OnInit { |
|
|
|
}) |
|
|
|
}) |
|
|
|
}) |
|
|
|
}) |
|
|
|
this.allBuildings = data |
|
|
|
this.allBuildings = data |
|
|
|
|
|
|
|
this.planTemplateData[0].building=[] |
|
|
|
|
|
|
|
for(var i=0;i<this.allBuildings.length;i++){ |
|
|
|
|
|
|
|
this.planTemplateData[0].building.push({name:this.allBuildings[i].name,body:this.planTemplateData[0].attribute}) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.buildingName=this.allBuildings[0].name |
|
|
|
|
|
|
|
console.log(this.planTemplateData) |
|
|
|
}) |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
|
//获取总平面图
|
|
|
|
//获取总平面图
|
|
|
@ -307,6 +316,19 @@ export class CreatePlanOnlineFiveComponent implements OnInit { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
//单位概况左侧建筑点击事件
|
|
|
|
|
|
|
|
buildingName |
|
|
|
|
|
|
|
clicki=0 |
|
|
|
|
|
|
|
clickBuilding(item,i){ |
|
|
|
|
|
|
|
this.buildingName=item.name |
|
|
|
|
|
|
|
this.clicki=i |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
//单位概况增加一行
|
|
|
|
|
|
|
|
unitadd(groupName){ |
|
|
|
|
|
|
|
if(groupName=='进攻通道'){ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//分段上传
|
|
|
|
//分段上传
|
|
|
|
sectionUpload(companyId: string, planId: string, file) { |
|
|
|
sectionUpload(companyId: string, planId: string, file) { |
|
|
|