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 = '
单位基本情况 |
单位名称 |
`+ 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 = `