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.
93 lines
4.9 KiB
93 lines
4.9 KiB
<div class="childContent"> |
|
|
|
<div class="childCenter"> |
|
<!-- 基本信息 --> |
|
<div class="publicBox baseInfo" *ngIf="beforeFence === 0"> |
|
<div class="interval"> |
|
<p class="title">北京市第十九加油站<button class="titleBotton">自营</button></p> |
|
<p class="text"><img src="../../../assets/images/baseInfo/position.png" class="textIcon">北京市朝阳区朝外大街关东店33号</p> |
|
<p class="text"><img src="../../../assets/images/baseInfo/building.png" class="textIcon">山东省淄博市</p> |
|
<p class="text"><img src="../../../assets/images/baseInfo/date.png" class="textIcon">2020.7.26开业</p> |
|
<p class="text"><img src="../../../assets/images/baseInfo/road.png" class="textIcon">4车道</p> |
|
</div> |
|
<div class="interval"> |
|
<p class="title">营业执照</p> |
|
<p class="textImage"><img src="../../../assets/images/upload.png"></p> |
|
</div> |
|
</div> |
|
<!-- 基本信息 --> |
|
<!-- 加油机 --> |
|
<div class="publicBox refueller" *ngIf="beforeFence === 1"> |
|
<div class="interval" *ngFor="let item of FacilityList"> |
|
<p class="title"><input type="text" class="tableInput" [(ngModel)]="item.getPropertyData().name"></p> |
|
<div class="table"> |
|
<div class="tableHeader"> |
|
<p>品牌</p> |
|
<p>超大牌</p> |
|
<p>油枪数量</p> |
|
<p>油品品号</p> |
|
<p>油泵类型</p> |
|
</div> |
|
<div class="tableContent"> |
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().brand"></p> |
|
<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 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> |
|
</div> |
|
<!-- 加油机 --> |
|
<!-- 油罐设备 --> |
|
<div class="publicBox refueller oilTank" *ngIf="beforeFence === 2"> |
|
<div class="interval" *ngFor="let item of FacilityList"> |
|
<p class="title"><input type="text" class="tableInput" [(ngModel)]="item.getPropertyData().name"></p> |
|
<div class="table"> |
|
<div class="tableHeader"> |
|
<p>油品品号</p> |
|
<p>油罐容积</p> |
|
<p>安全容积</p> |
|
<p>数量</p> |
|
<p>罐区</p> |
|
<p>油罐类型</p> |
|
</div> |
|
<div class="tableContent"> |
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().oilProductNo"></p> |
|
<p><input type="text" class="tableInput" [disabled]="!editModel" [(ngModel)]="item.getPropertyData().oilTankVolume"></p> |
|
<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 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> |
|
</div> |
|
<!-- 油罐设备 --> |
|
<!-- 消防设施 --> |
|
<div class="publicBox fireFacilities" *ngIf="beforeFence === 3"> |
|
<nz-tree [nzData]="treeData" [nzTreeTemplate]="nzTreeTemplate" (nzClick)="nzClick($event)"></nz-tree> |
|
<ng-template #nzTreeTemplate let-node let-origin="origin"> |
|
<div class="treeRow"><p>{{node.title}}</p><p><i nz-icon nzType="eye" nzTheme="outline" *ngIf="node.isSelected"></i>{{getFacilityNum(node.key)}}</p></div> |
|
</ng-template> |
|
</div> |
|
<!-- 消防设施 --> |
|
</div> |
|
|
|
<div class="childBottom" *ngIf="beforeFence === 0"> |
|
<button (click)="editInfo()"><i nz-icon nzType="edit" nzTheme="outline"></i>编辑信息</button> |
|
<button (click)="deriveExcel()"><i nz-icon nzType="file-excel" nzTheme="outline"></i>导出Excel</button> |
|
</div> |
|
|
|
</div>
|
|
|