|
|
|
@ -88,19 +88,14 @@
|
|
|
|
|
<mat-icon>add</mat-icon> |
|
|
|
|
</label> |
|
|
|
|
</div> |
|
|
|
|
<div [hidden]="!togglePlane" style="flex: 1;"> |
|
|
|
|
<div [hidden]="!togglePlane" style="flex: 1;max-height: 700px;overflow-y: auto;overflow-x: hidden;" class="sitePlanContentBox"> |
|
|
|
|
<div class="sitePlanContent" *ngFor="let item of sitePlanData;let key = index" |
|
|
|
|
[ngClass]="{'isRefugeStorey':item.isRefugeStorey==true,'selectSitePlan': selectSitePlanIndex==key}" |
|
|
|
|
(click)='selectSitePlan(item,key)'> |
|
|
|
|
(click)='selectSitePlan(item,key)' (mouseenter)="hoverSitePlan(item,key)"> |
|
|
|
|
<label class="overflowText" style="display:inline-block; max-width: 160px;"> |
|
|
|
|
<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/*"> |
|
|
|
@ -112,7 +107,7 @@
|
|
|
|
|
<img src="../../../assets/images/upload.jpg"> |
|
|
|
|
</a> |
|
|
|
|
<!-- 右边定位操作栏 --> |
|
|
|
|
<div id="rightOperate" *ngIf="selectSitePlanIndex==key && item.imageUrl && isEditPattern" |
|
|
|
|
<div id="rightOperate" class="rightOperate" *ngIf="selectSitePlanIndex==key && item.imageUrl && isEditPattern" |
|
|
|
|
(click)="$event.stopPropagation();"> |
|
|
|
|
<p class="functionButton"> |
|
|
|
|
<mat-icon class="functionIcon bigFunctionIcon" title="上移" (click)='moveUp(item,key)'>keyboard_arrow_up |
|
|
|
@ -561,23 +556,6 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div id="bottomDiv" (mousewheel)="$event.stopPropagation()" class="bottomCss" *ngIf="!pattern"> |
|
|
|
|
<div class="dragDiv" (mousedown)="bottomDivMouseDown($event)"></div> |
|
|
|
|
<div class="title"> |
|
|
|
|
<div (click)="details()" [ngClass]="{'detailsAndattentBtn': detailsAndattentBtn}"> |
|
|
|
|
节点详情 |
|
|
|
|
</div> |
|
|
|
|
<div (click)="attent()" [ngClass]="{'detailsAndattentBtn': !detailsAndattentBtn}"> |
|
|
|
|
注意事项 |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="body"> |
|
|
|
|
<textarea [disabled]="!isEditPattern" *ngIf="detailsAndattentBtn" name="" id="" rows="10" |
|
|
|
|
[(ngModel)]="canvasData.selectPanelPointBaseData.description"></textarea> |
|
|
|
|
<textarea [disabled]="!isEditPattern" *ngIf="!detailsAndattentBtn" name="" id="" rows="10" |
|
|
|
|
[(ngModel)]="canvasData.selectPanelPointBaseData.notes"></textarea> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|