|
|
|
@ -82,9 +82,9 @@
|
|
|
|
|
<mat-icon (click)='foundPanel($event)'>add</mat-icon> |
|
|
|
|
</label> |
|
|
|
|
</div> |
|
|
|
|
<div [hidden]="!togglePlane" > |
|
|
|
|
<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)'> |
|
|
|
|
[ngClass]="{'isRefugeStorey':item.isRefugeStorey==true,'selectSitePlan': selectSitePlanIndex==key}" (click)='selectSitePlan(item,key)' (mouseenter)="hoverSitePlan(item,key)"> |
|
|
|
|
<label class="overflowText planEveryRow"><mat-icon *ngIf="!item.imageUrl" class="matIcons">broken_image</mat-icon>{{item.name}}</label> |
|
|
|
|
<a href="javascript:;" class="a-upload" *ngIf="selectSitePlanIndex==key && isEditPattern" title="替换底图" > |
|
|
|
|
<input type="file" (change)='replaceBaseMap($event,item)' accept="image/*"> |
|
|
|
@ -95,7 +95,7 @@
|
|
|
|
|
<img src="../../../assets/images/upload.jpg"> |
|
|
|
|
</a> |
|
|
|
|
<!-- 右边定位操作栏 --> |
|
|
|
|
<div id="rightOperate" *ngIf="selectSitePlanIndex==key && item.imageUrl && isEditPattern" (click)="$event.stopPropagation();"> |
|
|
|
|
<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</mat-icon> |
|
|
|
|
</p> |
|
|
|
|