|
|
|
@ -49,7 +49,7 @@
|
|
|
|
|
</div> |
|
|
|
|
<!-- 加油机 --> |
|
|
|
|
<!-- 油罐设备 --> |
|
|
|
|
<div class="publicBox refueller oilTank" *ngIf="beforeFence === 2"> |
|
|
|
|
<div class="publicBox refueller" *ngIf="beforeFence === 2"> |
|
|
|
|
<div class="interval" *ngFor="let item of FacilityList" (click)="selectFacility(item)"> |
|
|
|
|
<!-- 选中样式 --> |
|
|
|
|
<div class="positionLeftTop" *ngIf="selectFacilityId === item.getID()"></div><div class="positionLeftBottom" *ngIf="selectFacilityId === item.getID()"></div> |
|
|
|
@ -91,6 +91,59 @@
|
|
|
|
|
</ng-template> |
|
|
|
|
</div> |
|
|
|
|
<!-- 消防设施 --> |
|
|
|
|
<!-- 输油管线 --> |
|
|
|
|
<div class="publicBox refueller" *ngIf="beforeFence === 5"> |
|
|
|
|
<div class="interval" *ngFor="let item of FacilityList" (click)="selectFacility(item)"> |
|
|
|
|
<!-- 选中样式 --> |
|
|
|
|
<div class="positionLeftTop" *ngIf="selectFacilityId === item.getID()"></div><div class="positionLeftBottom" *ngIf="selectFacilityId === item.getID()"></div> |
|
|
|
|
<div class="positionRightTop" *ngIf="selectFacilityId === item.getID()"></div><div class="positionRightBottom" *ngIf="selectFacilityId === item.getID()"></div> |
|
|
|
|
<!-- 选中样式 --> |
|
|
|
|
<p class="title"><input type="text" class="tableInput" [(ngModel)]="item.getPropertyData().name"></p> |
|
|
|
|
<div class="table"> |
|
|
|
|
<div class="tableHeader"> |
|
|
|
|
<p class="tableImg">图片</p> |
|
|
|
|
</div> |
|
|
|
|
<div class="tableContent"> |
|
|
|
|
<p class="tableImg"> |
|
|
|
|
<img *ngIf="item.getPropertyData().img" [src]="item.getPropertyData().img"> |
|
|
|
|
<a href="javascript:;" class="bottomPlanUpload uploadImgBox" [ngStyle]="{'float': item.getPropertyData().img? 'right' : 'left'}"><input type="file"><i nz-icon nzType="plus" nzTheme="outline"></i></a> |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 输油管线 --> |
|
|
|
|
<!-- 油气回收 --> |
|
|
|
|
<div class="publicBox refueller" *ngIf="beforeFence === 6"> |
|
|
|
|
<div class="interval" *ngFor="let item of FacilityList" (click)="selectFacility(item)"> |
|
|
|
|
<!-- 选中样式 --> |
|
|
|
|
<div class="positionLeftTop" *ngIf="selectFacilityId === item.getID()"></div><div class="positionLeftBottom" *ngIf="selectFacilityId === item.getID()"></div> |
|
|
|
|
<div class="positionRightTop" *ngIf="selectFacilityId === item.getID()"></div><div class="positionRightBottom" *ngIf="selectFacilityId === item.getID()"></div> |
|
|
|
|
<!-- 选中样式 --> |
|
|
|
|
<p class="title"><input type="text" class="tableInput" [(ngModel)]="item.getPropertyData().name"></p> |
|
|
|
|
<div class="table"> |
|
|
|
|
<div class="tableHeader"> |
|
|
|
|
<p>油气回收系统类型</p> |
|
|
|
|
<p>油气回收泵类型</p> |
|
|
|
|
<p class="tableImg">图片</p> |
|
|
|
|
</div> |
|
|
|
|
<div class="tableContent"> |
|
|
|
|
<p style="padding-left: 8px;"> |
|
|
|
|
<nz-select class="tableSelect" [nzBorderless]="true" [nzDisabled]="!editModel" [(ngModel)]="item.getPropertyData().VRUType"> |
|
|
|
|
<nz-option nzValue="fss" nzLabel="分散式"></nz-option> |
|
|
|
|
<nz-option nzValue="jzs" nzLabel="集中式"></nz-option> |
|
|
|
|
</nz-select> |
|
|
|
|
</p> |
|
|
|
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().VRUPumpType"></p> |
|
|
|
|
<p class="tableImg"> |
|
|
|
|
<img *ngIf="item.getPropertyData().img" [src]="item.getPropertyData().img"> |
|
|
|
|
<a href="javascript:;" class="bottomPlanUpload uploadImgBox" [ngStyle]="{'float': item.getPropertyData().img? 'right' : 'left'}"><input type="file"><i nz-icon nzType="plus" nzTheme="outline"></i></a> |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 油气回收 --> |
|
|
|
|
<!-- 处置预案 --> |
|
|
|
|
<div class="publicBox disposalPlan" *ngIf="beforeFence === 7 && allMarkPlanData"> |
|
|
|
|
<div class="interval" *ngFor="let item of allMarkPlanData.datas;let key = index;"> |
|
|
|
|