import { Component, Input, Renderer2, OnDestroy, AfterViewInit, ElementRef, OnInit, ViewChild } from '@angular/core'; import { CustomReuseStrategy } from 'src/app/CustomReuseStrategy'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { NzMessageService } from 'ng-zorro-antd/message'; import { Router } from '@angular/router'; import { TreeService } from 'src/app/service/tree.service'; import { HttpClient } from '@angular/common/http'; import { asBlob } from 'html-docx-js-typescript' // 要保存这个docx文件推荐引入file-saver哦,你可以用npm i -D file-saver来安装 import { saveAs } from 'file-saver' declare var AMap: any; @Component({ selector: 'app-unit-details', templateUrl: './unit-details.component.html', styleUrls: ['./unit-details.component.scss'] }) export class UnitDetailsComponent implements OnInit { @ViewChild('box') box: ElementRef; constructor(private message: NzMessageService, private router: Router, private toTree: TreeService, private fb: FormBuilder, private http: HttpClient, private renderer: Renderer2, private el: ElementRef, public renderer2: Renderer2, private elementRef: ElementRef) { } disableds = false datas = { basicInfo: { name: "", addr: "", phone: "", total: "", height: "", layer: "", structure: "", coveredArea: "", builtUpArea: "", nature: "", east: "", south: "", west: "", north: "", routeAndTime: "", positionCoordinates: { x: 0, y: 0 } }, facilities: { controlPosition: "", poolNumbe: "", poolPosition: "", poolCapacity: "", supplyMode: "", waterSources: "", waterSourcesPosition: "", system: { alarm: false, spray: false, broadcast: false, smoke: false, }, hydrantsNumber: "", hydrantsPosition: "", pumpNumber: "", pumpRange: "", pumpFlow: "", pumpAdapter: "", SprayPumpNumber: "", SprayPumpRange: "", SprayPumpFlow: "", SprayPumpAdapter: "", elevator: "", stairs: "", Export: "", indoorHydrant: "", standardIndoorHydrant: "" }, KeyParts: [ { keyparts: "", keypartsposition: "", buildingstructure: "", useNature: "", danger: "" }, { keyparts: "", keypartsposition: "", buildingstructure: "", useNature: "", danger: "" } ], tips: "" } validateForm!: FormGroup; id = "" integrity = 0 ngOnInit(): void { this.id = this.router['browserUrlTree'].queryParams.id if (this.router['browserUrlTree'].queryParams.pattern != "edit") { this.disableds = true } this.validateForm = this.fb.group({ directorName: [null], organizationId: [null, [Validators.required]], relatedOrganizationId: [null], buildingTypeId: [null] }); this.getAllOrganization() this.getCompanies() this.getBuildingTypes() } isMapLabel: boolean //地图标注位置 markerPosition: any = { x: 0, y: 0 }//单位坐标 map: any //地图实例 isGisTopBox: boolean = false//点击位置按钮 isGisTopBoxTwo: boolean = false//点击位置按钮 oldPositionMarker: any //旧位置marker实例 newPositionMarker: any //新位置marker实例 newPositionMarkerContent: any = '
' + ' ' + '
' + '
' newPositionMarkerContentBtn: any = '
' + ' ' + '
|
' + '
' oldPositionMarkerContent: any = '
' + ' ' + '
' + '
' //初始化地图 searchTitle: any//搜索内容 placeSearch: any//地址搜索类 search() { this.placeSearch.search(this.searchTitle, (status, result) => { // 搜索成功时,result即是对应的匹配数据 if (result.info == "OK") { this.newPositionMarker.setPosition([result.poiList.pois[0].location.lng, result.poiList.pois[0].location.lat]) this.markerPosition2 = { x: result.poiList.pois[0].location.lng, y: result.poiList.pois[0].location.lat } this.map.setCenter([result.poiList.pois[0].location.lng, result.poiList.pois[0].location.lat]); //设置地图中心点 } else { alert('查询不到输入地址信息') } }) } //初始化地图 markerPosition2 labelGis() { console.log('初始化地图') this.map = new AMap.Map('container', { zoom: 12 }) this.map.on('complete', () => { this.isGisTopBox = true }); //输入提示 var autoOptions = { input: "tipinput" }; AMap.plugin(['AMap.PlaceSearch', 'AMap.AutoComplete'], () => { var auto = new AMap.AutoComplete(autoOptions); this.placeSearch = new AMap.PlaceSearch(); //构造地点查询类 auto.on("select", (e) => { this.newPositionMarker.setPosition([e.poi.location.lng, e.poi.location.lat]) this.markerPosition2 = { x: e.poi.location.lng, y: e.poi.location.lat } this.map.setCenter([e.poi.location.lng, e.poi.location.lat]); //设置地图中心点 });//注册监听,当选中某条记录时会触发 }); if (this.isMapLabel) {//如果已经标注单位坐标 console.log('已标注单位位置') this.map.setCenter([this.datas.basicInfo.positionCoordinates.x, this.datas.basicInfo.positionCoordinates.y]); this.oldPositionMarker = new AMap.Marker({ position: [this.datas.basicInfo.positionCoordinates.x, this.datas.basicInfo.positionCoordinates.y], content: this.newPositionMarkerContent, offset: new AMap.Pixel(-34, -36) }) // 将 markers 添加到地图 this.map.add(this.oldPositionMarker); } else { // console.log('未标注单位位置') this.map.setCity('济南'); } } //点击位置按钮 setPosition() { if(this.disableds){ return } this.isGisTopBox = false this.isGisTopBoxTwo = true if (this.isMapLabel) {//如果已经标注单位坐标 // console.log('已标注单位位置') if (this.oldPositionMarker) { this.oldPositionMarker.setContent(this.oldPositionMarkerContent) } if (this.newPositionMarker) { this.newPositionMarker.setContent(this.oldPositionMarkerContent) } this.newPositionMarker = new AMap.Marker({ draggable: true, position: [this.markerPosition.x, this.markerPosition.y], content: this.newPositionMarkerContentBtn, offset: new AMap.Pixel(-34, -36) }); this.map.add(this.newPositionMarker); if (this.markerPosition.x && this.markerPosition.x != 0) { this.markerPosition2 = { x: this.markerPosition.x, y: this.markerPosition.y } } else { this.markerPosition2 = { x: this.map.getCenter().lng, y: this.map.getCenter().lat } //获取当前地图中心位置 } this.newPositionMarker.on('dragend', (e) => { let lnglat = this.map.containerToLngLat(e.pixel) this.markerPosition2 = { x: lnglat.KL, y: lnglat.kT } }) this.newPositionMarker.on('dragging', (e) => { let lnglat = this.map.containerToLngLat(e.pixel) this.newPositionMarker.setPosition(lnglat); }) //点击确定 this.renderer2.listen(this.elementRef.nativeElement.querySelector('#setPositionOk'), 'click', (event) => { this.map.clearMap(); this.isGisTopBox = true this.isGisTopBoxTwo = false this.newPositionMarker = new AMap.Marker({ position: [this.markerPosition2.x, this.markerPosition2.y], content: this.newPositionMarkerContent, offset: new AMap.Pixel(-34, -36) }); this.markerPosition = this.markerPosition2 this.map.add(this.newPositionMarker); }) //点击取消 this.renderer2.listen(this.elementRef.nativeElement.querySelector('#setPositionClose'), 'click', (event) => { this.isGisTopBox = true this.isGisTopBoxTwo = false this.map.clearMap(); this.newPositionMarker = new AMap.Marker({ position: [this.markerPosition.x, this.markerPosition.y], content: this.newPositionMarkerContent, offset: new AMap.Pixel(-34, -36) }); this.map.setCenter([this.markerPosition.x, this.markerPosition.y]); //设置地图中心点 this.map.add(this.newPositionMarker); }) } else { // console.log('未标注单位位置') if (this.newPositionMarker) { this.newPositionMarker.setContent(this.oldPositionMarkerContent) } let center //this.markerPosition---单位坐标 if (this.markerPosition.x && this.markerPosition.x != 0) { center = [this.markerPosition.x, this.markerPosition.y] } else { center = this.map.getCenter(); //获取当前地图中心位置 // console.log('获取当前地图中心位置', center) this.map.setCenter(center); } this.newPositionMarker = new AMap.Marker({ draggable: true, position: center, content: this.newPositionMarkerContentBtn, offset: new AMap.Pixel(-34, -36) }); this.map.add(this.newPositionMarker); if (this.markerPosition.x && this.markerPosition.x != 0) { this.markerPosition2 = { x: this.markerPosition.x, y: this.markerPosition.y } } else { this.markerPosition2 = { x: this.map.getCenter().lng, y: this.map.getCenter().lat } //获取当前地图中心位置 } this.newPositionMarker.on('dragend', (e) => { let lnglat = this.map.containerToLngLat(e.pixel) this.markerPosition2 = { x: lnglat.KL, y: lnglat.kT } }) this.newPositionMarker.on('dragging', (e) => { let lnglat = this.map.containerToLngLat(e.pixel) this.newPositionMarker.setPosition(lnglat); }) //点击确定 this.renderer2.listen(this.elementRef.nativeElement.querySelector('#setPositionOk'), 'click', (event) => { this.isGisTopBox = true this.isGisTopBoxTwo = false this.markerPosition = this.markerPosition2 this.map.clearMap(); this.newPositionMarker = new AMap.Marker({ position: [this.markerPosition.x, this.markerPosition.y], content: this.newPositionMarkerContent, offset: new AMap.Pixel(-34, -36) }); this.newPositionMarker.setMap(this.map) }) this.renderer2.listen(this.elementRef.nativeElement.querySelector('#setPositionClose'), 'click', (event) => { this.map.clearMap(); this.isGisTopBox = true this.isGisTopBoxTwo = false if (this.markerPosition.x && this.markerPosition.x != 0) {//说明之前标过点 this.newPositionMarker = new AMap.Marker({ position: [this.markerPosition.x, this.markerPosition.y], content: this.newPositionMarkerContent, offset: new AMap.Pixel(-34, -36) }); this.map.setCenter([this.markerPosition.x, this.markerPosition.y]); //设置地图中心点 this.map.add(this.newPositionMarker); } })//取消 } } listOfData: any[] = []; listOfData2: any[] = []; exportClick() { let alarm = "" let spray = "" let broadcast = "" let smoke = "" if (this.datas.facilities.system.alarm) { alarm = "有" } else { alarm = "无" } if (this.datas.facilities.system.spray) { spray = "有" } else { spray = "无" } if (this.datas.facilities.system.broadcast) { broadcast = "有" } else { broadcast = "无" } if (this.datas.facilities.system.smoke) { smoke = "有" } else { smoke = "无" } let box = `

`+ this.datas.basicInfo.name + `基本情况

单位基本情况

单位名称

`+ this.datas.basicInfo.name + `

单位地址

`+ this.datas.basicInfo.addr + `

联系电话

`+ this.datas.basicInfo.phone + `

人员总数

`+ this.datas.basicInfo.total + `

建筑高度

`+ this.datas.basicInfo.height + `

层数

`+ this.datas.basicInfo.layer + `

建筑结构

`+ this.datas.basicInfo.structure + `

占地面积

`+ this.datas.basicInfo.coveredArea + `

总建筑面积

`+ this.datas.basicInfo.builtUpArea + `

主要使用性质

`+ this.datas.basicInfo.nature + `

毗邻建筑

东:`+ this.datas.basicInfo.east + `

南:`+ this.datas.basicInfo.south + `

西:`+ this.datas.basicInfo.west + `

北:`+ this.datas.basicInfo.north + `

辖区中队行驶路线及时间

`+ this.datas.basicInfo.routeAndTime + `

单位内部主要消防设施

消防控制室

位置

`+ this.datas.facilities.controlPosition + `

消防水源

消防水池数量

`+ this.datas.facilities.poolNumbe + `

位置

`+ this.datas.facilities.poolPosition + `

总容量

`+ this.datas.facilities.poolCapacity + `

补给方式

室外其他水源

`+ this.datas.facilities.waterSources + `

位置

`+ this.datas.facilities.waterSourcesPosition + `

自动报警系统

`+ alarm + `

自动喷水系统

`+ spray + `

应急广播系统

`+ broadcast + `

防排烟系统

`+ smoke + `

室外消火栓数量

`+ this.datas.facilities.hydrantsNumber + `

室外消火栓位置分布

`+ this.datas.facilities.hydrantsPosition + `

消防泵

消火栓泵

数量:`+ this.datas.facilities.pumpNumber + `

扬程:`+ this.datas.facilities.pumpRange + `m

流量`+ this.datas.facilities.pumpFlow + `L/S

水泵接合器

数量:

`+ this.datas.facilities.pumpAdapter + `

喷淋泵

数量:`+ this.datas.facilities.SprayPumpNumber + `

扬程:`+ this.datas.facilities.SprayPumpRange + `m

流量:`+ this.datas.facilities.SprayPumpFlow + `L/S

水泵接合器

数量:

`+ this.datas.facilities.SprayPumpAdapter + `

消防电梯

数量及位置

`+ this.datas.facilities.elevator + `

疏散楼梯

数量及位置

`+ this.datas.facilities.stairs + `

安全出口

数量及位置

`+ this.datas.facilities.Export + `

室内消火栓数量

`+ this.datas.facilities.indoorHydrant + `

标准层室内消火栓数量及位置

`+ this.datas.facilities.standardIndoorHydrant + `

重点部位情况(一)

重点部位名称

`+ this.datas.KeyParts[0].keyparts + `

重点部位所在位置

`+ this.datas.KeyParts[0].keypartsposition + `

建筑结构

`+ this.datas.KeyParts[0].buildingstructure + `

使用性质

`+ this.datas.KeyParts[0].useNature + `

主要危险性

`+ this.datas.KeyParts[0].danger + `

重点部位情况(二)

重点部位名称

`+ this.datas.KeyParts[1].keyparts + `

重点部位所在位置

`+ this.datas.KeyParts[1].keypartsposition + `

建筑结构

`+ this.datas.KeyParts[1].buildingstructure + `

使用性质

`+ this.datas.KeyParts[1].useNature + `

主要危险性

`+ this.datas.KeyParts[1].danger + `

重点

提示

`+ this.datas.tips + `

 

` const htmlString = ` Document `+ box + ` ` const fileData = asBlob(htmlString).then((data: any) => { saveAs(data, this.datas.basicInfo.name + '基本信息.docx') // 保存为docx文件 }) } back() { window.history.back() } edit() { let num = 0 let num2 = 0 let num3 = 0 console.log(this.validateForm.value); for (const key in this.validateForm.value) { if (Object.prototype.hasOwnProperty.call(this.validateForm.value, key)) { const element = this.validateForm.value[key]; if (element) { num3 += 1 } } } for (const key in this.datas) { if (Object.prototype.hasOwnProperty.call(this.datas, key)) { const element = this.datas[key]; for (const key in element) { if (Object.prototype.hasOwnProperty.call(element, key)) { const element2 = element[key]; if (element2) { // console.log(element2); num += 1 } } } } } for (const key in this.datas.KeyParts) { if (Object.prototype.hasOwnProperty.call(this.datas.KeyParts, key)) { const element = this.datas.KeyParts[key] for (const key in element) { if (Object.prototype.hasOwnProperty.call(element, key)) { const element2 = element[key] // console.log(element2); if (element2) { num2 += 1 } } } } } let num4 = (num + num2 + num3 - 1) / 57 this.integrity = Math.floor(num4 * 100) / 100 console.log(num, num2, num3, num4); this.datas.basicInfo.positionCoordinates = { x: this.markerPosition.x, y: this.markerPosition.y } let body = { id: this.id, companyName: this.datas.basicInfo.name, directorName: this.validateForm.value.directorName, directorPhone: this.datas.basicInfo.phone, address: this.datas.basicInfo.addr, organizationId: this.validateForm.value.organizationId, relatedOrganizationId: this.validateForm.value.relatedOrganizationId, useNature: this.datas.basicInfo.nature, buildingTypeId: this.validateForm.value.buildingTypeId, integrity: this.integrity, data: JSON.stringify(this.datas) } this.http.patch('/api/Companies/' + this.id, body).subscribe(data => { console.log(data); this.message.create('success', '保存成功!'); this.getCompanies() }) } BuildingTypes getBuildingTypes() { this.http.get('/api/BuildingTypes').subscribe((data: any) => { console.log(data); this.BuildingTypes = data }) } getCompanies() { this.http.get('/api/Companies/' + this.id).subscribe((data: any) => { console.log(data); if (data.data) { this.datas = JSON.parse(data.data) } this.datas.basicInfo.name = data.companyName this.datas.basicInfo.addr = data.address this.datas.basicInfo.phone = data.directorPhone this.datas.basicInfo.nature = data.useNature this.integrity = data.integrity this.validateForm.patchValue({ directorName: data.directorName, organizationId: data.organizationId, relatedOrganizationId: data.relatedOrganizationId, buildingTypeId: data.buildingTypeId }) if (this.datas.basicInfo.positionCoordinates && (this.datas.basicInfo.positionCoordinates.x != 0 && this.datas.basicInfo.positionCoordinates.y != 0)) {//已标注 this.isMapLabel = true this.markerPosition = this.datas.basicInfo.positionCoordinates } else {//未标注 this.isMapLabel = false } this.labelGis() }) } nodes: any = [] getAllOrganization() { let organizationId = JSON.parse(sessionStorage.getItem('userData')).organizationId let params = { OrganizationId: organizationId || '', ContainsChildren: "true", PageNumber: 1, PageSize: 9999 } this.http.get('/api/Organizations', { params: params }).subscribe((data: any) => { data.items.forEach(element => { if (element.id == organizationId) { element.parentId = null } element.key = element.id element.title = element.name }); this.nodes = [...this.toTree.toTree(data.items)] }) } }