Browse Source

选中设备

dev
陈鹏飞 3 years ago
parent
commit
aa030344b9
  1. 6
      src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts
  2. 4
      src/app/pages/left-domain/left-domain.component.html
  3. 2
      src/app/pages/left-domain/left-domain.component.scss
  4. 2
      src/app/pages/left-domain/left-domain.component.ts
  5. 8
      src/app/pages/plan/plan.component.ts

6
src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts

@ -163,12 +163,8 @@ export class FacilityInfoInSceneWindow extends UIBase {
}
} else { // 单选
if (isChecked) { //选中
this.three.beforeOnefacilityInfo = facilityInfoUIItem[0].getID();
this.three.getPropertyData(facilityInfoUIItem[0])
console.log("通知前端选中设备", facilityInfoUIItem[0]);
this.three.selectProperty(facilityInfoUIItem[0])
} else { //取消选中
// this.three.isShowRightNature = false
this.three.beforeOnefacilityInfo = null
}

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()}}</p>
<p class="title">{{item.getName()}}<i nz-icon nzType="eye" nzTheme="outline" *ngIf="selectFacilityId === item.getID()"></i></p>
<div class="table">
<div class="tableHeader">
<p>品牌</p>
@ -42,7 +42,7 @@
<!-- 油罐设备 -->
<div class="publicBox refueller oilTank" *ngIf="beforeFence === 2">
<div class="interval" *ngFor="let item of FacilityList">
<p class="title">{{item.getName()}}</p>
<p class="title">{{item.getName()}}<i nz-icon nzType="eye" nzTheme="outline" *ngIf="selectFacilityId === item.getID()"></i></p>
<div class="table">
<div class="tableHeader">
<p>油品品号</p>

2
src/app/pages/left-domain/left-domain.component.scss

@ -34,7 +34,7 @@
}
.publicBox{ width: 100%; height: 100%; overflow-y: auto; padding: 0 20px; }
.title{ font-size: 16px; height: 20px; line-height: 20px; margin-bottom: 20px; } //头部header
.title{ font-size: 16px; height: 20px; line-height: 20px; margin-bottom: 20px; .anticon{ margin-left: 5px; font-size: 16px; } } //头部header
.tableInput{ border: none; outline: none; background-color: transparent; width: 100%; height: 100%; }
.baseInfo{ //基本信息

2
src/app/pages/left-domain/left-domain.component.ts

@ -22,6 +22,7 @@ export class LeftDomainComponent implements OnInit {
editModel: boolean = true; //编辑/查看模式
beforeFence: number; //当前选中功能栏
FacilityList: FacilityInfoUIItem[] = []; //统计设备 list
selectFacilityId: string = null; //选中设备 ID
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent;
treeData: NzTreeNodeOptions[] = []; //tree data
@ -49,6 +50,7 @@ export class LeftDomainComponent implements OnInit {
}
})
this.FacilityList = list
this.selectFacilityId = null
if (this.beforeFence === 3) { //消防设施
this.handleTreeData(this.FacilityList)
}

8
src/app/pages/plan/plan.component.ts

@ -269,11 +269,13 @@ export class PlanComponent implements OnInit {
}
beforeOnePropertyData: FacilityInfoUIItem = null; //当前选择 设备
beforeOnefacilityInfo: string = null; //当前选择 设备ID
//获取选择设备 属性
getPropertyData(e: FacilityInfoUIItem) {
//选中 设备
selectProperty(e: FacilityInfoUIItem) {
this.beforeOnePropertyData = e
if (this.isShowChildComponent && this.leftDomain) {
this.leftDomain.selectFacilityId = e.getID()
}
}
selectRightTopFast: number = 0; //当前选择功能 快捷栏

Loading…
Cancel
Save