|
|
|
@ -18,8 +18,12 @@
|
|
|
|
|
<!-- 基本信息 --> |
|
|
|
|
<!-- 加油机 --> |
|
|
|
|
<div class="publicBox refueller" *ngIf="beforeFence === 1"> |
|
|
|
|
<div class="interval" *ngFor="let item of FacilityList"> |
|
|
|
|
<p class="title">{{item.getName()}}<i nz-icon nzType="eye" nzTheme="outline" *ngIf="selectFacilityId === item.getID()"></i></p> |
|
|
|
|
<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> |
|
|
|
@ -33,7 +37,12 @@
|
|
|
|
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().superBrand"></p> |
|
|
|
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().oilGunNum"></p> |
|
|
|
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().oilProductNo"></p> |
|
|
|
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().oilPumpType"></p> |
|
|
|
|
<p style="padding-left: 8px;"> |
|
|
|
|
<nz-select class="tableSelect" [nzBorderless]="true" [nzDisabled]="!editModel" [(ngModel)]="item.getPropertyData().oilPumpType"> |
|
|
|
|
<nz-option nzValue="zxb" nzLabel="自吸泵"></nz-option> |
|
|
|
|
<nz-option nzValue="qyb" nzLabel="潜油泵"></nz-option> |
|
|
|
|
</nz-select> |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -41,8 +50,12 @@
|
|
|
|
|
<!-- 加油机 --> |
|
|
|
|
<!-- 油罐设备 --> |
|
|
|
|
<div class="publicBox refueller oilTank" *ngIf="beforeFence === 2"> |
|
|
|
|
<div class="interval" *ngFor="let item of FacilityList"> |
|
|
|
|
<p class="title">{{item.getName()}}<i nz-icon nzType="eye" nzTheme="outline" *ngIf="selectFacilityId === item.getID()"></i></p> |
|
|
|
|
<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> |
|
|
|
@ -58,7 +71,13 @@
|
|
|
|
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().safeVolume"></p> |
|
|
|
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().quantity"></p> |
|
|
|
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().tankFarm"></p> |
|
|
|
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().oilTankType"></p> |
|
|
|
|
<p style="padding-left: 8px;"> |
|
|
|
|
<nz-select class="tableSelect" [nzBorderless]="true" [nzDisabled]="!editModel" [(ngModel)]="item.getPropertyData().oilTankType"> |
|
|
|
|
<nz-option nzValue="scg" nzLabel="双层罐"></nz-option> |
|
|
|
|
<nz-option nzValue="dcg" nzLabel="单层罐"></nz-option> |
|
|
|
|
<nz-option nzValue="fsgc" nzLabel="防渗罐池"></nz-option> |
|
|
|
|
</nz-select> |
|
|
|
|
</p> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|