|
|
|
@ -112,6 +112,17 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="leftBuilding" *ngIf="selectedItem == '单位概况'"> |
|
|
|
|
<div class="buildingHead" > |
|
|
|
|
<span>建筑列表</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="buildingBody"> |
|
|
|
|
<div class="buildName" *ngFor="let item of allBuildings;let i=index" [ngClass]="{'selectedTr': i == clicki}" (click)='clickBuilding(item,i)'> |
|
|
|
|
<mat-checkbox class="example-margin" color='primary'></mat-checkbox> |
|
|
|
|
<span>{{item.name}}</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="mainbox"> |
|
|
|
|
<!-- 封面 --> |
|
|
|
@ -240,11 +251,6 @@
|
|
|
|
|
</th> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
<!-- <tr> |
|
|
|
|
<td><input type="text"placeholder="请输入内容" ></td> |
|
|
|
|
<td><input type="text"placeholder="请输入内容" ></td> |
|
|
|
|
<td><input type="text"placeholder="请输入内容" ></td> |
|
|
|
|
</tr> --> |
|
|
|
|
<tr *ngFor="let itemtr of element.tabletr"> |
|
|
|
|
<td |
|
|
|
|
*ngFor="let itemtd of itemtr.tabletd;let tabletdi=index;TrackBy:trackByFn"> |
|
|
|
@ -309,6 +315,44 @@
|
|
|
|
|
<div class="disposalPoint" *ngIf="item.groupName == '预案附件'"> |
|
|
|
|
处置要点 |
|
|
|
|
</div> |
|
|
|
|
<div class="unit" *ngIf="item.groupName == '单位概况'"> |
|
|
|
|
<div class="unithead"> |
|
|
|
|
<span>{{buildingName}}</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="unitbody" *ngFor="let element of item.building[clicki].body;let i=index"> |
|
|
|
|
<div *ngIf="element.completed"> |
|
|
|
|
<div class="unitbodyHead"> |
|
|
|
|
<span>{{element.surveyName}}</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="body"> |
|
|
|
|
<!-- 进攻通道 --> |
|
|
|
|
<div class="attack" *ngIf="element.surveyName=='进攻通道'"> |
|
|
|
|
<div *ngFor="let attack of element.attinf"> |
|
|
|
|
<div class="attackhead"> |
|
|
|
|
<span>{{attack.head}}</span> |
|
|
|
|
<img src="../../../assets/images/deleteblue.png" > |
|
|
|
|
<img src="../../../assets/images/add.png" > |
|
|
|
|
</div> |
|
|
|
|
<div class="attackbody"> |
|
|
|
|
<table> |
|
|
|
|
<thead> |
|
|
|
|
<th *ngFor="let itemth of attack.tableth;let tablethi=index;TrackBy:trackByFn"> |
|
|
|
|
<input type="text" placeholder="请输入内容" |
|
|
|
|
[(ngModel)]="attack.tableth[tablethi]"> |
|
|
|
|
</th> |
|
|
|
|
</thead> |
|
|
|
|
<tbody></tbody> |
|
|
|
|
</table> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|