|
|
|
@ -10,11 +10,11 @@
|
|
|
|
|
<div class="fixedImg" *ngIf="!item.imageUrls.length"> |
|
|
|
|
<img src="../../../assets/images/upload.png" (click)='imgdetails(item.imageUrls)'> |
|
|
|
|
</div> |
|
|
|
|
<div style="margin-top: 10px;"> |
|
|
|
|
<div style="margin-top: 5px;"> |
|
|
|
|
<label style="margin-left: 25px;">建筑物名称:</label> |
|
|
|
|
<label style="margin-left: 25px;">{{item.name}}</label> |
|
|
|
|
</div> |
|
|
|
|
<div style="margin-top: 10px;"> |
|
|
|
|
<div style="margin-top: 5px;"> |
|
|
|
|
<label style="margin-left: 25px;">建筑物方向:</label> |
|
|
|
|
<label style="margin-left: 25px;"> |
|
|
|
|
<label *ngIf="item.direction==0">东</label> |
|
|
|
@ -27,6 +27,11 @@
|
|
|
|
|
<label *ngIf="item.direction==7">西北</label> |
|
|
|
|
</label> |
|
|
|
|
</div> |
|
|
|
|
<div style="margin-top: 5px;"> |
|
|
|
|
<label style="margin-left: 25px;">图片数量:</label> |
|
|
|
|
<label style="margin-left: 25px;" *ngIf="item.imageUrls.length">{{item.imageUrls.length}}张</label> |
|
|
|
|
<label style="margin-left: 25px;" *ngIf="!item.imageUrls.length">0张</label> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<p style="width: 100%;text-align: center;margin-top: 25px;" *ngIf="!AllAdjoining.length">暂无数据,请前往平面图进行相关数据录入</p> |
|
|
|
@ -41,11 +46,11 @@
|
|
|
|
|
<img [src]="items.imageUrls[0]" 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: 10px;"> |
|
|
|
|
<div style="margin-top: 5px;"> |
|
|
|
|
<label style="margin-left: 25px;">建筑物名称:</label> |
|
|
|
|
<label style="margin-left: 25px;">{{items.name}}</label> |
|
|
|
|
</div> |
|
|
|
|
<div style="margin-top: 10px;"> |
|
|
|
|
<div style="margin-top: 5px;"> |
|
|
|
|
<label style="margin-left: 25px;">建筑物方向:</label> |
|
|
|
|
<label style="margin-left: 25px;"> |
|
|
|
|
<label *ngIf="items.direction==0">东</label> |
|
|
|
@ -58,6 +63,11 @@
|
|
|
|
|
<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> |
|
|
|
|