You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
2.0 KiB
41 lines
2.0 KiB
<div class="content"> |
|
<mat-tab-group style="height: 100%;"> |
|
|
|
<mat-tab label="{{item.name}}" *ngFor="let item of AllBuilding"> |
|
<div class="allImgs"> |
|
|
|
<div class="imgBox" *ngFor="let items of item.allImgs"> |
|
<div class="fixedImg" *ngIf="items.imageUrls.length"> |
|
<img [src]="items.imgURL" onerror="javascript:this.src='../../../assets/images/upload.png'" (click)='imgdetails(items.imageUrls)'> |
|
</div> |
|
<div class="fixedImg" *ngIf="!items.imageUrls.length"><img src="../../../assets/images/upload.png" (click)='imgdetails(items.imageUrls)'></div> |
|
<div style="margin-top: 5px;"> |
|
<label style="margin-left: 25px;">建筑物名称:</label> |
|
<label style="margin-left: 25px;">{{items.name}}</label> |
|
</div> |
|
<div style="margin-top: 5px;"> |
|
<label style="margin-left: 25px;">建筑物方向:</label> |
|
<label style="margin-left: 25px;"> |
|
<label *ngIf="items.direction==0">东</label> |
|
<label *ngIf="items.direction==1">西</label> |
|
<label *ngIf="items.direction==2">南</label> |
|
<label *ngIf="items.direction==3">北</label> |
|
<label *ngIf="items.direction==4">东南</label> |
|
<label *ngIf="items.direction==5">西南</label> |
|
<label *ngIf="items.direction==6">东北</label> |
|
<label *ngIf="items.direction==7">西北</label> |
|
</label> |
|
</div> |
|
<div style="margin-top: 5px;"> |
|
<label style="margin-left: 25px;">图片数量:</label> |
|
<label style="margin-left: 25px;" *ngIf="items.imageUrls.length">{{items.imageUrls.length}}张</label> |
|
<label style="margin-left: 25px;" *ngIf="!items.imageUrls.length">0张</label> |
|
</div> |
|
</div> |
|
|
|
<p style="width: 100%;text-align: center;margin-top: 25px;" *ngIf="!item.allImgs.length">暂无数据,请前往平面图进行相关数据录入</p> |
|
</div> |
|
</mat-tab> |
|
|
|
</mat-tab-group> |
|
</div> |