|
|
|
@ -7,22 +7,27 @@
|
|
|
|
|
<button mat-button (click)="toggle2()"> |
|
|
|
|
<mat-icon style="vertical-align: middle;">list</mat-icon> |
|
|
|
|
</button> |
|
|
|
|
<button (click)="copyAsset()" class="copytobutn" mat-button title="复制" style="margin:0 5px;" *ngIf="isEditPattern"> |
|
|
|
|
<mat-icon style="padding-bottom: 7px;">library_books</mat-icon> |
|
|
|
|
<span [ngClass]="{'icongray': !basicInfo}" title="基本信息名称显示/隐藏" class="marginLeftRight" (click)="basicInfoClick()"> |
|
|
|
|
基本信息名称<mat-icon>visibility</mat-icon> |
|
|
|
|
</span> |
|
|
|
|
<span [ngClass]="{'icongray': !wantToWork}" *ngIf="!pattern" title="想定作业名称显示/隐藏" class="marginLeftRight" (click)="wantToWorkClick()"> |
|
|
|
|
想定作业名称<mat-icon>visibility</mat-icon> |
|
|
|
|
</span> |
|
|
|
|
|
|
|
|
|
<span class="marginLeftRight"> |
|
|
|
|
<mat-checkbox color="primary"></mat-checkbox> 多选 |
|
|
|
|
</span> |
|
|
|
|
<span class="marginLeftRight"> |
|
|
|
|
<mat-checkbox color="primary"></mat-checkbox> 显示图例 |
|
|
|
|
</span> |
|
|
|
|
<button (click)="copyAsset()" class="copytobutn marginLeftRight" mat-button title="复制" *ngIf="isEditPattern"> |
|
|
|
|
复制<mat-icon>library_books</mat-icon> |
|
|
|
|
</button> |
|
|
|
|
|
|
|
|
|
<button (click)="pasteAsset()" class="copytobutn" mat-button title="粘贴" *ngIf="isEditPattern"> |
|
|
|
|
<mat-icon style="padding-bottom: 7px;">screen_share</mat-icon> |
|
|
|
|
<button (click)="pasteAsset()" class="copytobutn marginLeftRight" mat-button title="粘贴" *ngIf="isEditPattern"> |
|
|
|
|
粘贴<mat-icon>screen_share</mat-icon> |
|
|
|
|
</button> |
|
|
|
|
|
|
|
|
|
<span [ngClass]="{'icongray': !basicInfo}" title="基本信息名称显示/隐藏" style="margin-right:20px;user-select: none;margin-left: 22px;" class="nameShow" (click)="basicInfoClick()"> |
|
|
|
|
基本信息名称 |
|
|
|
|
<mat-icon>visibility</mat-icon> |
|
|
|
|
</span> |
|
|
|
|
<span [ngClass]="{'icongray': !wantToWork}" *ngIf="!pattern" title="想定作业名称显示/隐藏" style="user-select: none;" class="nameShow" (click)="wantToWorkClick()"> |
|
|
|
|
想定作业名称 |
|
|
|
|
<mat-icon>visibility</mat-icon> |
|
|
|
|
</span> |
|
|
|
|
<div class="patternSwitch"> |
|
|
|
|
<span (click)="baseInfo()" [ngClass]="{'selectedPattern': pattern}"> |
|
|
|
|
基本信息编辑 |
|
|
|
@ -40,32 +45,18 @@
|
|
|
|
|
|
|
|
|
|
<!-- 头部操作栏 --> |
|
|
|
|
<div class="headerOperate"> |
|
|
|
|
<button mat-button (click)="checkedBuilding({name:'总平面图'},-1)" |
|
|
|
|
[ngClass]="{'buildingbtnchecked': checkedBuildingIndex==-1}"> |
|
|
|
|
<ng-container *ngIf="pattern"> |
|
|
|
|
<button mat-button (click)="checkedBuilding({name:'总平面图'},-1)" [ngClass]="{'buildingbtnchecked': checkedBuildingIndex==-1}"> |
|
|
|
|
<span>总平面图</span> |
|
|
|
|
<span *ngIf="isEditPattern && !pattern"> |
|
|
|
|
<img src="../../../assets/images/fire.png" *ngIf="sitePlanIcon.fire==2"> |
|
|
|
|
<img src="../../../assets/images/noFire.png" *ngIf="sitePlanIcon.fire==1"> |
|
|
|
|
<img src="../../../assets/images/force.png" *ngIf="sitePlanIcon.force==2"> |
|
|
|
|
<img src="../../../assets/images/noForce.png" *ngIf="sitePlanIcon.force==1"> |
|
|
|
|
</span> |
|
|
|
|
</button> |
|
|
|
|
<button mat-button *ngFor="let item of allBuildings;let key = index" (click)="checkedBuilding(item,key)" class="bigeditdeletebtn" |
|
|
|
|
[ngClass]="{'buildingbtnchecked': checkedBuildingIndex==key}"> |
|
|
|
|
<button mat-button *ngFor="let item of allBuildings;let key = index" (click)="checkedBuilding(item,key)" class="bigeditdeletebtn" [ngClass]="{'buildingbtnchecked': checkedBuildingIndex==key}"> |
|
|
|
|
<span>{{item.name}}</span> |
|
|
|
|
<span *ngIf="isEditPattern && !pattern"> |
|
|
|
|
<img src="../../../assets/images/fire.png" *ngIf="item.fire && item.fire==2"> |
|
|
|
|
<img src="../../../assets/images/noFire.png" *ngIf="item.fire && item.fire==1"> |
|
|
|
|
<img src="../../../assets/images/force.png" *ngIf="item.force && item.force==2"> |
|
|
|
|
<img src="../../../assets/images/noForce.png" *ngIf="item.force && item.force==1"> |
|
|
|
|
</span> |
|
|
|
|
<span class="editdeletebtn" *ngIf="isEditPattern && pattern"> |
|
|
|
|
<mat-icon (click)="editBuilding($event,item)" |
|
|
|
|
style="font-size: 23px;vertical-align:sub;margin-left: 6px;color: rgb(26, 194, 26);">create</mat-icon> |
|
|
|
|
<mat-icon (click)="deleteBuilding($event,item)" |
|
|
|
|
style="font-size: 23px;vertical-align:sub;color: rgb(224, 51, 51);">delete</mat-icon> |
|
|
|
|
<mat-icon (click)="editBuilding($event,item)" style="font-size: 23px;vertical-align:sub;margin-left: 6px;color: rgb(26, 194, 26);">create</mat-icon> |
|
|
|
|
<mat-icon (click)="deleteBuilding($event,item)" style="font-size: 23px;vertical-align:sub;color: rgb(224, 51, 51);">delete</mat-icon> |
|
|
|
|
</span> |
|
|
|
|
</button> |
|
|
|
|
</ng-container> |
|
|
|
|
<button mat-button (click)="createBuilding()" *ngIf="isEditPattern && pattern"> |
|
|
|
|
<span style="font-size: 24px;">+</span> |
|
|
|
|
</button> |
|
|
|
@ -112,10 +103,79 @@
|
|
|
|
|
<!-- H5Canvas --> |
|
|
|
|
<app-working-area #canvas [init]='this'></app-working-area> |
|
|
|
|
<!-- H5Canvas --> |
|
|
|
|
<!-- 中间建筑+楼层 --> |
|
|
|
|
<div class="centerBuildingDiv" style="user-select: none;" cdkDrag *ngIf="!pattern"> |
|
|
|
|
<div class="centerTotal"> |
|
|
|
|
<div class="centerTotalHeader"> |
|
|
|
|
<mat-icon cdkDragHandle matTooltip="可移动窗口" matTooltipPosition="above" class="move">open_with</mat-icon> |
|
|
|
|
<label (click)='togglebeforeOneCheckedBuilding()' class="centerTotalTitle"> |
|
|
|
|
<label class="overflowText">{{beforeOneCheckedBuilding.name}}</label> |
|
|
|
|
<mat-icon *ngIf="beforeOneCheckedBuildingIsShow">keyboard_arrow_up</mat-icon> |
|
|
|
|
<mat-icon *ngIf="!beforeOneCheckedBuildingIsShow">keyboard_arrow_down</mat-icon> |
|
|
|
|
</label> |
|
|
|
|
<a href="javascript:;" class="fireForce" *ngIf="isEditPattern && !pattern"> |
|
|
|
|
<img src="../../../assets/images/fire.png" *ngIf="beforeOneCheckedBuilding.fire && beforeOneCheckedBuilding.fire==2"> |
|
|
|
|
<img src="../../../assets/images/noFire.png" *ngIf="beforeOneCheckedBuilding.fire && beforeOneCheckedBuilding.fire==1"> |
|
|
|
|
<img src="../../../assets/images/force.png" *ngIf="beforeOneCheckedBuilding.force && beforeOneCheckedBuilding.force==2"> |
|
|
|
|
<img src="../../../assets/images/noForce.png" *ngIf="beforeOneCheckedBuilding.force && beforeOneCheckedBuilding.force==1"> |
|
|
|
|
</a> |
|
|
|
|
</div> |
|
|
|
|
<div class="everyTotal overflowText" *ngFor="let item of sitePlanData;let key = index" [ngClass]="{'selectSitePlan': selectSitePlanIndex==key}" (click)='selectSitePlan(item,key)'> |
|
|
|
|
{{item.name}} |
|
|
|
|
<a href="javascript:;" class="fireForce" *ngIf="isEditPattern && !pattern"> |
|
|
|
|
<img src="../../../assets/images/fire.png" *ngIf="item.fire && item.fire==2"> |
|
|
|
|
<img src="../../../assets/images/noFire.png" *ngIf="item.fire && item.fire==1"> |
|
|
|
|
<img src="../../../assets/images/force.png" *ngIf="item.force && item.force==2"> |
|
|
|
|
<img src="../../../assets/images/noForce.png" *ngIf="item.force && item.force==1"> |
|
|
|
|
</a> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div style="width: 5px;height: 100%;opacity: 0;" [hidden]="!beforeOneCheckedBuildingIsShow"></div> |
|
|
|
|
<div class="centerTotal" [hidden]="!beforeOneCheckedBuildingIsShow"> |
|
|
|
|
<div class="everyTotal" (click)="checkedBuilding({name:'总平面图'},-1)" [ngClass]="{'buildingbtnchecked': checkedBuildingIndex==-1}">总平面图</div> |
|
|
|
|
<div class="everyTotal overflowText" *ngFor="let item of allBuildings;let key = index" (click)="checkedBuilding(item,key)"[ngClass]="{'buildingbtnchecked': checkedBuildingIndex==key}"> |
|
|
|
|
{{item.name}} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 中间建筑+楼层 --> |
|
|
|
|
<!-- 左侧操作栏 --> |
|
|
|
|
<div id="leftDiv" class='functionalDomainLeft publicCss' [ngClass]="{'togglePanel': toggleExpandPanel==true,'scenarioAssignment': !pattern}" style="user-select: none;"> |
|
|
|
|
<div class="leftDragDiv" (mousedown)="leftDivMouseDown($event)"></div> |
|
|
|
|
<!-- 处置预案 --> |
|
|
|
|
<div class="handlePlan" *ngIf="!pattern"> |
|
|
|
|
<div class="planarGraphHeader" (click)='toggleHandlePlan()'> |
|
|
|
|
<mat-icon *ngIf="toggleHandlePlans">keyboard_arrow_up</mat-icon> |
|
|
|
|
<mat-icon *ngIf="!toggleHandlePlans">keyboard_arrow_down</mat-icon> |
|
|
|
|
<label class="overflowText" style="font-weight: 550;">处置预案</label> |
|
|
|
|
<label style="margin-left: 20px;" *ngIf="isEditPattern"> |
|
|
|
|
<mat-icon style="color: #c2a40ce8;" title="计算差异" (click)='countValue($event)'>flash_on</mat-icon> |
|
|
|
|
<mat-icon style="margin: 0 3px;" title="新建空节点" (click)='addPanelPoint($event,null,treeData)'>add</mat-icon> |
|
|
|
|
<mat-icon class="matIcons" (click)='addBGCPanelPoint($event)'>photo_size_select_actual</mat-icon> |
|
|
|
|
</label> |
|
|
|
|
</div> |
|
|
|
|
<div [hidden]="!toggleHandlePlans"> |
|
|
|
|
|
|
|
|
|
<nz-tree #nzTreeComponent [nzData]="treeData" nzBlockNode nzDraggable (nzOnDrop)="nzEvent($event)" [nzTreeTemplate]="nzTreeTemplate" [nzBeforeDrop]="beforeDrop" [nzExpandedKeys]="defaultExpandedKeys"></nz-tree> |
|
|
|
|
<ng-template #nzTreeTemplate let-node let-origin="origin"> |
|
|
|
|
<div id="terrNodePublic" (click)='selectanelPoint(node.origin)' |
|
|
|
|
[ngClass]="{'selectanelPoint': selectDisposalNode==node.origin.id,'selectanelPointData': canvasData.selectPanelPoint.DisposalNodeId==node.origin.id}"> |
|
|
|
|
<label title="{{node.title}}" class="overflowText textNode">{{node.title}}</label> |
|
|
|
|
<div class="scoreDiv" *ngIf="isEditPattern"> |
|
|
|
|
<mat-icon *ngIf="!node.origin.sitePlanId && !node.origin.buildingAreaId" (click)='editPanelPoint($event,node)'>edit</mat-icon> |
|
|
|
|
<mat-icon *ngIf="node.level===0" (click)='addPanelPoint($event,node.origin,null)'>add</mat-icon> |
|
|
|
|
<mat-icon *ngIf="!node.origin.sitePlanId && !node.origin.buildingAreaId" (click)='copyPanelPoint($event,node,treeData)'>library_books</mat-icon> |
|
|
|
|
<mat-icon (click)='deletePanelPoint($event,node.origin)'>delete_forever</mat-icon> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</ng-template> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 处置预案 --> |
|
|
|
|
|
|
|
|
|
<!-- 平面图 --> |
|
|
|
|
<div class="planarGraph"> |
|
|
|
|
<div class="planarGraph" *ngIf="pattern"> |
|
|
|
|
<div class="planarGraphHeader" (click)='togglePlanarGraph()'> |
|
|
|
|
<mat-icon *ngIf="togglePlane">keyboard_arrow_up</mat-icon> |
|
|
|
|
<mat-icon *ngIf="!togglePlane">keyboard_arrow_down</mat-icon> |
|
|
|
@ -127,12 +187,6 @@
|
|
|
|
|
<div [hidden]="!togglePlane" > |
|
|
|
|
<div class="sitePlanContent" *ngFor="let item of sitePlanData;let key = index" [ngClass]="{'isRefugeStorey':item.isRefugeStorey==true,'selectSitePlan': selectSitePlanIndex==key}" (click)='selectSitePlan(item,key)'> |
|
|
|
|
<label class="overflowText" [title]="item.name" style="display:inline-block; max-width: 145px;"><mat-icon *ngIf="!item.imageUrl" class="matIcons">broken_image</mat-icon>{{item.name}}</label> |
|
|
|
|
<a href="javascript:;" class="fireForce" *ngIf="isEditPattern && !pattern"> |
|
|
|
|
<img src="../../../assets/images/fire.png" *ngIf="item.fire && item.fire==2"> |
|
|
|
|
<img src="../../../assets/images/noFire.png" *ngIf="item.fire && item.fire==1"> |
|
|
|
|
<img src="../../../assets/images/force.png" *ngIf="item.force && item.force==2"> |
|
|
|
|
<img src="../../../assets/images/noForce.png" *ngIf="item.force && item.force==1"> |
|
|
|
|
</a> |
|
|
|
|
<a href="javascript:;" class="a-upload" *ngIf="selectSitePlanIndex==key && isEditPattern && pattern" title="替换底图" > |
|
|
|
|
<input type="file" (change)='replaceBaseMap($event,item)' accept="image/*"> |
|
|
|
|
<mat-icon class="matIcons">photo_size_select_actual</mat-icon> |
|
|
|
@ -191,37 +245,8 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 素材库 --> |
|
|
|
|
<!-- 处置预案 --> |
|
|
|
|
<div class="handlePlan" *ngIf="!pattern"> |
|
|
|
|
<div class="planarGraphHeader" (click)='toggleHandlePlan()'> |
|
|
|
|
<mat-icon *ngIf="toggleHandlePlans">keyboard_arrow_up</mat-icon> |
|
|
|
|
<mat-icon *ngIf="!toggleHandlePlans">keyboard_arrow_down</mat-icon> |
|
|
|
|
<label class="overflowText" style="font-weight: 550;">处置预案</label> |
|
|
|
|
<label style="margin-left: 45px;" *ngIf="isEditPattern"> |
|
|
|
|
<mat-icon style="color: #c2a40ce8;" title="计算差异" (click)='countValue($event)'>flash_on</mat-icon> |
|
|
|
|
<mat-icon style="margin-left: 3px;" title="新建空节点" (click)='addPanelPoint($event,null,treeData)'>add</mat-icon> |
|
|
|
|
</label> |
|
|
|
|
</div> |
|
|
|
|
<div [hidden]="!toggleHandlePlans"> |
|
|
|
|
|
|
|
|
|
<nz-tree #nzTreeComponent [nzData]="treeData" nzBlockNode nzDraggable (nzOnDrop)="nzEvent($event)" [nzTreeTemplate]="nzTreeTemplate" [nzBeforeDrop]="beforeDrop" [nzExpandedKeys]="defaultExpandedKeys"></nz-tree> |
|
|
|
|
<ng-template #nzTreeTemplate let-node let-origin="origin"> |
|
|
|
|
<div id="terrNodePublic" (click)='selectanelPoint(node.origin)' [ngClass]="{'selectanelPoint': selectDisposalNode==node.origin.id}"> |
|
|
|
|
<label title="{{node.title}}" class="overflowText textNode">{{node.title}}</label> |
|
|
|
|
<div class="scoreDiv" *ngIf="isEditPattern"> |
|
|
|
|
<mat-icon *ngIf="!node.origin.sitePlanId && !node.origin.buildingAreaId" (click)='editPanelPoint($event,node)'>edit</mat-icon> |
|
|
|
|
<mat-icon *ngIf="node.level===0" (click)='addPanelPoint($event,node.origin,null)'>add</mat-icon> |
|
|
|
|
<mat-icon *ngIf="!node.origin.sitePlanId && !node.origin.buildingAreaId" (click)='copyPanelPoint($event,node,treeData)'>library_books</mat-icon> |
|
|
|
|
<mat-icon (click)='deletePanelPoint($event,node.origin)'>delete_forever</mat-icon> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</ng-template> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 处置预案 --> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
<!-- 左侧操作栏 --> |
|
|
|
|
|
|
|
|
|
<div id="rightDiv" class="functionalDomainRight publicCss " [ngClass]="{'togglePanel2': toggleExpandPanelRight==true}" style="user-select: none;"> |
|
|
|
|
<!-- 右侧div鼠标拖动div --> |
|
|
|
|