From 3b49df5e249305707e00f6d681ef1cdffcd93613 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Tue, 9 Nov 2021 16:37:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=88=E9=98=B2=E8=AE=BE=E6=96=BDUI=E5=AE=8C?= =?UTF-8?q?=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../left-domain/left-domain.component.html | 32 +++++++++++++++++- .../left-domain/left-domain.component.scss | 11 +++++++ .../left-domain/left-domain.component.ts | 33 ++++++++++++++++++- src/app/pages/pages.module.ts | 4 ++- 4 files changed, 77 insertions(+), 3 deletions(-) diff --git a/src/app/pages/left-domain/left-domain.component.html b/src/app/pages/left-domain/left-domain.component.html index 7f3fd0c..73e12e9 100644 --- a/src/app/pages/left-domain/left-domain.component.html +++ b/src/app/pages/left-domain/left-domain.component.html @@ -19,7 +19,7 @@
-

一类加油机

+

1类加油机

品牌

@@ -39,6 +39,36 @@
+ +
+
+

1号油罐

+
+
+

油品品号

+

油罐容积

+

安全容积

+

数量

+

罐区

+

油罐类型

+
+
+

92#

+

200L

+

180L

+

1

+

独立罐区

+

防渗罐池

+
+
+
+
+ + +
+ +
+
diff --git a/src/app/pages/left-domain/left-domain.component.scss b/src/app/pages/left-domain/left-domain.component.scss index 1b22cdf..fe01a1e 100644 --- a/src/app/pages/left-domain/left-domain.component.scss +++ b/src/app/pages/left-domain/left-domain.component.scss @@ -63,4 +63,15 @@ p{ padding-left: 20px; border-bottom: 1px solid #91CCFF; } } } +} +.oilTank{ //油管设备 + +} +.fireFacilities{ //消防设施 + .ant-tree{ + height: 32px; + line-height: 32px; + background-color: transparent; + color: #C4E2FC; + } } \ No newline at end of file diff --git a/src/app/pages/left-domain/left-domain.component.ts b/src/app/pages/left-domain/left-domain.component.ts index a2e06bc..80e56ad 100644 --- a/src/app/pages/left-domain/left-domain.component.ts +++ b/src/app/pages/left-domain/left-domain.component.ts @@ -1,4 +1,5 @@ -import { Component, OnInit } from '@angular/core'; +import { Component, OnInit, ViewChild } from '@angular/core'; +import { NzTreeComponent, NzTreeNodeOptions } from 'ng-zorro-antd/tree'; import { PlanComponent } from '../plan/plan.component'; @Component({ @@ -15,6 +16,8 @@ export class LeftDomainComponent implements OnInit { } beforeFence: number; //当前选中功能栏 + @ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent; + treeData: NzTreeNodeOptions[] = treeData.nodes; //tree data //初始化组件 initComponent(type?: number) { @@ -38,3 +41,31 @@ export class LeftDomainComponent implements OnInit { } + +export class treeData { + static nodes: NzTreeNodeOptions[] = [ + { + title: '灭火器', + key: '1', + selectable: false, + children: [ + { title: '4KG手提干粉灭火器', key: '1', selectable: false, }, + { title: '4KG手提泡沫灭火器', key: '2', selectable: false, }, + { title: '4KG手提二氧化碳灭火器', key: '3', selectable: false, }, + { title: '35KG手推灭火器', key: '4', selectable: false, }, + ] + }, + { + title: '灭火毯', + key: '2', + selectable: false, + children: [] + }, + { + title: '消防锹', + key: '3', + selectable: false, + children: [] + }, + ]; +} diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index 5cb9708..2780709 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -29,6 +29,7 @@ import { NzPaginationModule } from 'ng-zorro-antd/pagination'; import { NzDropDownModule } from 'ng-zorro-antd/dropdown'; import { NzMessageModule } from 'ng-zorro-antd/message'; import { NzSpinModule } from 'ng-zorro-antd/spin'; +import { NzTreeModule } from 'ng-zorro-antd/tree'; import { TodayWarningAdminComponent } from './today-warning-admin/today-warning-admin.component'; import { CriminalRecordsAdminComponent } from './criminal-records-admin/criminal-records-admin.component'; import { EquipmentInfoComponent } from './equipment-info/equipment-info.component'; @@ -63,7 +64,8 @@ import { EditequipmentComponent } from './equipment-info/editequipment/editequip NzPaginationModule, NzDropDownModule, NzMessageModule, - NzSpinModule + NzSpinModule, + NzTreeModule ] }) export class PagesModule { }