Browse Source

设备属性name

dev
陈鹏飞 3 years ago
parent
commit
d2bde436a6
  1. 2
      src/app/babylon/model/data/institution/facility/property-data/in/property-data-yg.ts
  2. 4
      src/app/pages/left-domain/left-domain.component.html

2
src/app/babylon/model/data/institution/facility/property-data/in/property-data-yg.ts

@ -16,6 +16,7 @@ export class PropertyData_YG extends PropertyData_Base {
constructor(key: string,oilProductNo: string,oilTankVolume: string,safeVolume: string,quantity: string,tankFarm: string,oilTankType: string) {
super(key, FacilityType.JY_YG);
this.name = "未命名";
this.oilProductNo = oilProductNo
this.oilTankVolume = oilTankVolume
this.safeVolume = safeVolume
@ -26,6 +27,7 @@ export class PropertyData_YG extends PropertyData_Base {
clone(key: string) {
let result = new PropertyData_YG(key,this.oilProductNo,this.oilTankVolume,this.safeVolume,this.quantity,this.tankFarm,this.oilTankType);
result.name = this.name;
return result;
}

4
src/app/pages/left-domain/left-domain.component.html

@ -19,7 +19,7 @@
<!-- 加油机 -->
<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>
<p class="title"><input type="text" class="tableInput" [(ngModel)]="item.getPropertyData().name"></p>
<div class="table">
<div class="tableHeader">
<p>品牌</p>
@ -47,7 +47,7 @@
<!-- 油罐设备 -->
<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>
<p class="title"><input type="text" class="tableInput" [(ngModel)]="item.getPropertyData().name"></p>
<div class="table">
<div class="tableHeader">
<p>油品品号</p>

Loading…
Cancel
Save