diff --git a/package.json b/package.json index 97ac929..fc9157d 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "scripts": { "ng": "ng", "start": "ng serve --proxy-config proxy.config.json --open --port 4000 ", - "build": "ng build --prod", + "build": "node --max_old_space_size=5048 ./node_modules/@angular/cli/bin/ng build --prod", "test": "ng test", "lint": "ng lint", "e2e": "ng e2e" diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 12ff333..62ab6f4 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -16,7 +16,7 @@ const routes: Routes = [ { path: 'register', component: RegisterComponent }, //注册页 { path: '', component: HomeComponent, children: [ - { path: 'home', loadChildren: () => import('./pages/pages.module').then(m => m.PagesModule) } + { path: '', loadChildren: () => import('./pages/pages.module').then(m => m.PagesModule) } ] }, //首页 { diff --git a/src/app/babylon/controller/inputController.ts b/src/app/babylon/controller/inputController.ts index 35b8b0e..3fea861 100644 --- a/src/app/babylon/controller/inputController.ts +++ b/src/app/babylon/controller/inputController.ts @@ -1304,8 +1304,11 @@ export class Keyboard { private constructor() { // 添加快捷键 document.addEventListener('keydown', (e: KeyboardEvent) => { + if (e.key == null) { + return; + } let key = e.key.toLocaleLowerCase(); - console.log(key); + // console.log(key); if (key == "w" && e.shiftKey) { this.W = true; } else if (key == "w") { diff --git a/src/app/babylon/controller/mode-manager.ts b/src/app/babylon/controller/mode-manager.ts index 4f3c9fd..330f13a 100644 --- a/src/app/babylon/controller/mode-manager.ts +++ b/src/app/babylon/controller/mode-manager.ts @@ -18,17 +18,17 @@ export class ModeManager { * 当前模式的类型 * 外部使用 currentMode 属性访问和修改 */ - private static s_currentMode: ModeType = ModeType.Edit; + private static s_currentMode: ModeType = ModeType.Look; /** * 制作模式代表内部编辑人员,可新增单位、上传模型,查看模式代表交付的模式 */ - public static s_isMakeMode = true; + public static s_isMakeMode = false; /** * 调试模式 */ - public static isDebug = true; + public static isDebug = false; @@ -63,7 +63,7 @@ export class ModeManager { */ static set currentMode(modeType: ModeType) { ModeManager.s_currentMode = modeType; - ModeManager.log("currentMode" + modeType); + } //封装打印 diff --git a/src/app/babylon/controller/status/status-manager.ts b/src/app/babylon/controller/status/status-manager.ts index bb85945..642d7cb 100644 --- a/src/app/babylon/controller/status/status-manager.ts +++ b/src/app/babylon/controller/status/status-manager.ts @@ -54,6 +54,11 @@ export class StatusManager { newStatus.onEnter(); return newStatus; } + + static dispose() { + StatusManager.s_allStatus = []; + StatusManager.s_currentStatus = null; + } } diff --git a/src/app/babylon/game.ts b/src/app/babylon/game.ts index c331dd7..ac79b57 100644 --- a/src/app/babylon/game.ts +++ b/src/app/babylon/game.ts @@ -54,6 +54,7 @@ export class Game { dispose() { SceneManager.Instance.dispose(); + StatusManager.dispose(); this.scene.dispose() this.scene = null; this.engine.dispose(); diff --git a/src/app/babylon/model/data/institution/facility/property-data/in/property-data-sygx.ts b/src/app/babylon/model/data/institution/facility/property-data/in/property-data-sygx.ts index a396beb..f3fa99d 100644 --- a/src/app/babylon/model/data/institution/facility/property-data/in/property-data-sygx.ts +++ b/src/app/babylon/model/data/institution/facility/property-data/in/property-data-sygx.ts @@ -4,21 +4,22 @@ import { PropertyData_Base_IMG } from "../base/property-data-base-img"; import { PropertyData_Base } from "../property-data-base"; /** - * 输油管 + * 输油管线 */ export class PropertyData_SYGX extends PropertyData_Base_IMG { constructor(key: string) { - super(key, "", "", "", FacilityType.JY_SYGX); - + super(key, "", "", "", FacilityType.JY_SYGX); + this.name = "未命名"; } clone(key: string) { let result = new PropertyData_SYGX(key); + result.name = this.name; result.img = this.img; result.pos = this.pos; result.info = this.info, - result.is360 = this.is360; + result.is360 = this.is360; return result; } diff --git a/src/app/babylon/model/data/institution/facility/property-data/in/property-data-yqhsgx.ts b/src/app/babylon/model/data/institution/facility/property-data/in/property-data-yqhsgx.ts index 22bdab0..a8c62f0 100644 --- a/src/app/babylon/model/data/institution/facility/property-data/in/property-data-yqhsgx.ts +++ b/src/app/babylon/model/data/institution/facility/property-data/in/property-data-yqhsgx.ts @@ -4,22 +4,28 @@ import { PropertyData_Base_IMG } from "../base/property-data-base-img"; import { PropertyData_Base } from "../property-data-base"; /** - * 输油管 + * 油气回收管线 */ export class PropertyData_YQHSGX extends PropertyData_Base_IMG { + VRUType: string = ""; //油气回收系统类型 + VRUPumpType: string = ""; //油气回收泵类型 + constructor(key: string) { - super(key, "", "", "", FacilityType.JY_YQHSGX); - + super(key, "", "", "", FacilityType.JY_YQHSGX); + this.name = "未命名"; } clone(key: string) { - let result = new PropertyData_YQHSGX(key); - result.img = this.img; - result.pos = this.pos; - result.info = this.info, - result.is360 = this.is360; - return result; + let result = new PropertyData_YQHSGX(key); + result.name = this.name; + result.VRUType = this.VRUType; + result.VRUPumpType = this.VRUPumpType; + result.img = this.img; + result.pos = this.pos; + result.info = this.info, + result.is360 = this.is360; + return result; } } \ No newline at end of file diff --git a/src/app/babylon/tool/gizmo-tool.ts b/src/app/babylon/tool/gizmo-tool.ts index 632c872..4032194 100644 --- a/src/app/babylon/tool/gizmo-tool.ts +++ b/src/app/babylon/tool/gizmo-tool.ts @@ -83,6 +83,10 @@ export class GizmoTool { GizmoTool.onTransformUITypeChange(TransformUIType.Hide); } + static dispose() { + + } + static onBeforeRender( eventData: Scene, eventState: EventState @@ -195,7 +199,7 @@ export class GizmoTool { //改变Gizmo目标 static changeGizmoAim(mesh: AbstractMesh, x: boolean = true, y = true, z = true) { - + console.trace("改变gizmo"); GizmoTool.s_nowPickAim_mesh = mesh; GizmoTool.s_gizmoManager.attachToMesh(mesh); GizmoTool.s_gizmoManager.gizmos.positionGizmo.xGizmo.isEnabled = x; @@ -427,6 +431,7 @@ export class GizmoTool { if (uiType == TransformUIType.Hide || !ModeManager.s_isMakeMode) { //隐藏选中框 GizmoTool.s_boundingBoxGizmo.attachedMesh = null; + } } diff --git a/src/app/babylon/view/building-window/building-ui-item.ts b/src/app/babylon/view/building-window/building-ui-item.ts index d7ab98e..53b3f47 100644 --- a/src/app/babylon/view/building-window/building-ui-item.ts +++ b/src/app/babylon/view/building-window/building-ui-item.ts @@ -3,6 +3,7 @@ import { AbstractMesh, Mesh, TransformNode } from "@babylonjs/core"; import { ConfigManager } from "../../controller/config-manager"; import { InfoManager } from "../../controller/info-manager"; +import { ModeManager, ModeType } from "../../controller/mode-manager"; import { SceneManager } from "../../controller/scene-manager"; import { IndoorStatus } from "../../controller/status/indoor-status"; import { StatusManager } from "../../controller/status/status-manager"; @@ -161,7 +162,7 @@ export class BuildingUIItem { */ onSelect(select: boolean, animMove = true) { if (select) { - if (this.buildingInfo.ModelInfo != null && this.buildingInfo.ModelInfo.modelBox != null) { + if (this.buildingInfo.ModelInfo != null && this.buildingInfo.ModelInfo.modelBox != null && ModeManager.currentMode == ModeType.Edit) { GizmoTool.onPickMeshInfoObservable.notifyObservers(this.buildingInfo.ModelInfo); //BabylonTool.changeCameraTarget(SceneManager.Instance.defaultCamera, this.buildingInfo.ModelInfo.modelBox, animMove); } diff --git a/src/app/babylon/view/building-window/building-window.ts b/src/app/babylon/view/building-window/building-window.ts index 485c347..5137ad9 100644 --- a/src/app/babylon/view/building-window/building-window.ts +++ b/src/app/babylon/view/building-window/building-window.ts @@ -372,7 +372,7 @@ export class BuildingWindow extends UIBase { } } - console.log("选中建筑", modelInfo); + // console.log("选中建筑", modelInfo); this.showJYZModules(JYZInfoMoudleType.AQSS, false); this.showJYZModules(JYZInfoMoudleType.YQHSGX, false); this.showJYZModules(JYZInfoMoudleType.YQHSGX, false); diff --git a/src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts b/src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts index 014a1d8..bc28516 100644 --- a/src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts +++ b/src/app/babylon/view/facilityinfoinscene-window/facilityinfoinscene-window.ts @@ -178,31 +178,31 @@ export class FacilityInfoInSceneWindow extends UIBase { */ showFacilityByType(facilityType: FacilityType, show: boolean) { - if (ModeManager.currentMode == ModeType.Look) { - for (let i = 0; i < this.facilityInfoUIItemes.length; i++) { - let l_facilityData = (this.facilityInfoUIItemes[i].modelInfo.modelData) as ModelData_facility; - if (facilityType == null || facilityType == l_facilityData.facilityType) { - this.facilityInfoUIItemes[i].modelInfo.setEnable(show); - } - else if (show) { - this.facilityInfoUIItemes[i].modelInfo.setEnable(false); - } - } - // for (let i = 0; i < this.facilityInfoUIItemes.length; i++) { - // let l_facilityData = (this.facilityInfoUIItemes[i].modelInfo.modelData) as ModelData_facility; - // if (facilityType == null || facilityType == l_facilityData.facilityType) { - // this.facilityInfoUIItemes[i].modelInfo.setIconEnable(show); - // } - // } - } - else { - for (let i = 0; i < this.facilityInfoUIItemes.length; i++) { - let l_facilityData = (this.facilityInfoUIItemes[i].modelInfo.modelData) as ModelData_facility; - if (facilityType == null || facilityType == l_facilityData.facilityType) { - this.facilityInfoUIItemes[i].modelInfo.setIconEnable(show); - } + // if (ModeManager.currentMode == ModeType.Look) { + // for (let i = 0; i < this.facilityInfoUIItemes.length; i++) { + // let l_facilityData = (this.facilityInfoUIItemes[i].modelInfo.modelData) as ModelData_facility; + // if (facilityType == null || facilityType == l_facilityData.facilityType) { + // this.facilityInfoUIItemes[i].modelInfo.setEnable(show); + // } + // else if (show) { + // this.facilityInfoUIItemes[i].modelInfo.setEnable(false); + // } + // } + // // for (let i = 0; i < this.facilityInfoUIItemes.length; i++) { + // // let l_facilityData = (this.facilityInfoUIItemes[i].modelInfo.modelData) as ModelData_facility; + // // if (facilityType == null || facilityType == l_facilityData.facilityType) { + // // this.facilityInfoUIItemes[i].modelInfo.setIconEnable(show); + // // } + // // } + // } + // else { + for (let i = 0; i < this.facilityInfoUIItemes.length; i++) { + let l_facilityData = (this.facilityInfoUIItemes[i].modelInfo.modelData) as ModelData_facility; + if (facilityType == null || facilityType == l_facilityData.facilityType) { + this.facilityInfoUIItemes[i].modelInfo.setIconEnable(show); } } + // } } diff --git a/src/app/pages/criminal-records-admin/criminal-records-admin.component.ts b/src/app/pages/criminal-records-admin/criminal-records-admin.component.ts index 335a642..bb4723c 100644 --- a/src/app/pages/criminal-records-admin/criminal-records-admin.component.ts +++ b/src/app/pages/criminal-records-admin/criminal-records-admin.component.ts @@ -304,7 +304,7 @@ export class CriminalRecordsAdminComponent implements OnInit { list: any = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] look() { - this.router.navigate(['home/records/petrolStation']) + this.router.navigate(['/records/petrolStation']) } diff --git a/src/app/pages/criminal-records/criminal-records.component.html b/src/app/pages/criminal-records/criminal-records.component.html index cf769ea..aa55342 100644 --- a/src/app/pages/criminal-records/criminal-records.component.html +++ b/src/app/pages/criminal-records/criminal-records.component.html @@ -57,8 +57,29 @@
-
+
+
+ + + 违规事件统计 + +
+
违规事件总数
+
206
+
+
+ +
+
+
+ + + 违规趋势 + +
+
+
@@ -102,7 +123,7 @@ 加油区2号摄像头
- 2021-10-12 09:28:13 + 2021-10-12 09:28:13
查看 @@ -117,4 +138,4 @@
- + \ No newline at end of file diff --git a/src/app/pages/criminal-records/criminal-records.component.scss b/src/app/pages/criminal-records/criminal-records.component.scss index 99713ae..ec459a9 100644 --- a/src/app/pages/criminal-records/criminal-records.component.scss +++ b/src/app/pages/criminal-records/criminal-records.component.scss @@ -10,7 +10,7 @@ padding: 0 36px; width: 100%; height: 32px; - margin: 20px 0px; + margin-top: 14px; form { width: 100%; @@ -47,7 +47,7 @@ overflow: hidden; .title { - margin-bottom: 15px; + margin: 13px 0; width: 100%; height: 64px; box-sizing: border-box; @@ -59,10 +59,99 @@ display: flex; justify-content: center; - .charts { - width: 98%; - height: 300px; - border: 1px solid white; + .chart { + width: 97%; + height: 360px; + border: 0px; + box-shadow: 0 0 26px 0px #1a7fd7 inset; + box-sizing: border-box; + padding: 18px 26px; + display: flex; + + div { + display: flex; + flex-direction: column; + + span { + font-family: titlefont; + display: flex; + align-items: center; + height: 28px; + color: #bee1ff; + font-size: 16px; + } + + div { + flex: 1; + } + + .piechart {} + + .barchart { + // border: 1px solid rgba(145, 204, 255, 0.95); + } + } + + .leftbox { + width: 360px; + position: relative; + + .centerContent { + position: absolute; + top: 42%; + left: 11%; + width: 170px; + + div { + text-align: center; + } + + .numname { + font-family: titlefont; + color: #bee1ff; + } + + .num { + color: #FFFFFF; + font-size: 42px; + text-shadow: 0px 0px 16px #3A9AFF; + font-weight: bold; + height: 49px; + line-height: 50px; + } + } + } + + .rightbox { + flex: 1; + position: relative; + + .btnbox { + position: absolute; + right: 5px; + top: 5px; + display: flex; + flex-direction: row; + z-index: 999; + + button { + border: 1px solid #91CCFF; + color: #91CCFF; + border-radius: 0px; + box-shadow: 0 0 5px 0 #2399FF inset; + background: none; + } + + .rankingBtn { + margin-right: 16px; + } + + .selectedbtn { + background: linear-gradient(180deg, #000D21 0%, #001331 27%, #2399FF 100%); + color: white; + } + } + } } } diff --git a/src/app/pages/criminal-records/criminal-records.component.ts b/src/app/pages/criminal-records/criminal-records.component.ts index e396d37..727604e 100644 --- a/src/app/pages/criminal-records/criminal-records.component.ts +++ b/src/app/pages/criminal-records/criminal-records.component.ts @@ -1,5 +1,6 @@ import { Component, OnInit } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import * as echarts from 'echarts'; @Component({ selector: 'app-criminal-records', templateUrl: './criminal-records.component.html', @@ -8,7 +9,120 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms'; export class CriminalRecordsComponent implements OnInit { validateForm!: FormGroup; constructor(private fb: FormBuilder) { } + mybarChart: any //柱状图 + baroption = { + xAxis: { + type: 'category', + data: this.getThirtyDays(), + axisLine: { + show: false, + lineStyle: { + color: '#91CCFF' + } + }, + axisTick: {//刻度线 + show: false + } + }, + yAxis: { + type: 'value', + nameTextStyle: { + color: '#C4E2FC' + }, + splitLine: {//分割线 + lineStyle: { + color: ['#0f4374'], + width: 2 + } + }, + axisTick: {//刻度线 + show: false + }, + axisLine: {//轴线 + show: false, + lineStyle: { + color: '#C4E2FC' + } + } + }, + series: [ + { + data: [120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 100, 101], + type: 'bar', + itemStyle: { + color: { + type: 'linear', + x: 0, + y: 0, + x2: 0, + y2: 1, + colorStops: [{ + offset: 0, color: '#23F0FF' // 0% 处的颜色 + }, { + offset: 1, color: 'rgba(35, 153, 255, 0.1)' // 100% 处的颜色 + }], + global: false // 缺省为 false + } + }, + barWidth: '25%' + }, + { + data: [120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 100, 101], + type: 'line', + symbol: 'circle', + symbolSize: 8, + itemStyle: { + color: '#fff', + shadowColor: '#fff', + shadowBlur: 10 + }, + lineStyle: { + color: '#FFCC8A', + width: 1 + } + } + ], + grid: { + left: '36px', + right: '30px', + bottom: '50px', + top: '45px' + } + }; + getThirtyDays() { + //获取当前日期 + let myDate = new Date(); + var nowY = myDate.getFullYear(); + var nowM = myDate.getMonth() + 1; + var nowD = myDate.getDate(); + var enddateStr = nowY + "-" + (nowM < 10 ? "0" + nowM : nowM) + "-" + (nowD < 10 ? "0" + nowD : nowD);//当前日期 + var enddate = new Date(enddateStr); + + //获取三十天前日期 + var lw = new Date(new Date().getTime() - 1000 * 60 * 60 * 24 * 30);//最后一个数字30可改,30天的意思 + var lastY = lw.getFullYear(); + var lastM = lw.getMonth() + 1; + var lastD = lw.getDate(); + var startdateStr = lastY + "-" + (lastM < 10 ? "0" + lastM : lastM) + "-" + (lastD < 10 ? "0" + lastD : lastD);//三十天之前日期 + var startDate = new Date(startdateStr); + + const dateList = [] + while (true) { + startDate.setDate(startDate.getDate() + 1) + if (startDate.getTime() <= enddate.getTime()) { + if (startDate.getDate() < 10) { + // startDate.getFullYear() 获取年,此处没加上年份 + dateList.push((startDate.getMonth() + 1) + '.0' + startDate.getDate()) + } else { + dateList.push((startDate.getMonth() + 1) + '.' + startDate.getDate()) + } + } else { + break + } + } + return dateList; + } ngOnInit(): void { this.validateForm = this.fb.group({ level: [null], @@ -16,6 +130,75 @@ export class CriminalRecordsComponent implements OnInit { site: [null], datePicker: [null] }); + // 基于准备好的dom,初始化echarts实例 + let myChart = echarts.init(document.getElementById('piechart')); + let option = { + color: ['#FF4B65', '#23D9FF', '#608AFF', '#B2FF6D', '#FFFF99', '#C4E2FC', '#FF7F00', '#0090FF', '#FFD634', '#105597', '#FF4B65', '#23D9FF', '#71FFF5', '#B2FF6D'], + tooltip: { + trigger: 'item'//触发类型 + }, + series: [ + { + // name: 'Access From', + type: 'pie', + radius: [85, 112],//内半径外,外半径 + left: '-30%', + avoidLabelOverlap: false,//防止标签重叠策略 + label: {//每一个标签外网延伸的引导说明 + show: false, + position: 'outside' + }, + labelLine: {//引导线 + show: true, + showAbove: true + }, + emphasis: {//中间高亮区域 + label: { + show: false, + fontSize: '40', + fontWeight: 'bold' + } + }, + data: [ + { value: 26, name: '工作人员倚靠加油机或者立柱1' }, + { value: 86, name: '工作人员倚靠加油机或者立柱2' }, + { value: 34, name: '工作人员倚靠加油机或者立柱3' }, + { value: 55, name: '工作人员倚靠加油机或者立柱4' }, + { value: 60, name: '工作人员倚靠加油机或者立柱5' }, + { value: 26, name: '工作人员倚靠加油机或者立柱6' }, + { value: 86, name: '工作人员倚靠加油机或者立柱7' }, + { value: 34, name: '工作人员倚靠加油机或者立柱8' }, + { value: 55, name: '工作人员倚靠加油机或者立柱9' }, + { value: 60, name: '工作人员倚靠加油机或者立柱10' }, + { value: 26, name: '工作人员倚靠加油机或者立柱11' }, + { value: 86, name: '工作人员倚靠加油机或者立柱12' }, + { value: 34, name: '工作人员倚靠加油机或者立柱13' }, + { value: 55, name: '工作人员倚靠加油机或者立柱14' }, + { value: 60, name: '工作人员倚靠加油机或者立柱15' }, + { value: 26, name: '工作人员倚靠加油机或者立柱16' }, + { value: 86, name: '工作人员倚靠加油机或者立柱17' }, + { value: 34, name: '工作人员倚靠加油机或者立柱18' }, + { value: 55, name: '工作人员倚靠加油机或者立柱19' }, + { value: 60, name: '工作人员倚靠加油机或者立柱20' } + ], + tooltip: {//鼠标移入提示 + position: 'right', + padding: [14, 19], + backgroundColor: 'rgba(28, 129, 218, 0.4)', + textStyle: { + color: '#fff', + fontSize: 12 + } + } + } + ] + }; + // 绘制图表 + myChart.setOption(option); + + this.mybarChart = echarts.init(document.getElementById('barchart')); + + this.mybarChart.setOption(this.baroption); } submitForm(): void { for (const i in this.validateForm.controls) { diff --git a/src/app/pages/home/home.component.html b/src/app/pages/home/home.component.html index ed6f6c5..49d7d83 100644 --- a/src/app/pages/home/home.component.html +++ b/src/app/pages/home/home.component.html @@ -3,21 +3,33 @@
diff --git a/src/app/pages/home/home.component.scss b/src/app/pages/home/home.component.scss index b652476..b29e46d 100644 --- a/src/app/pages/home/home.component.scss +++ b/src/app/pages/home/home.component.scss @@ -16,6 +16,7 @@ font-size: 17px; background: url('../../../assets/images/navbg.png') no-repeat; background-size: 100% 100%; + position: relative; li { width: 10%; @@ -26,6 +27,50 @@ font-family: sybold; color: #EBFAFF; } + +} + +.backbtn { + position: absolute; + right: 26px; + bottom: 6px; + + button { + width: 64px; + height: 32px; + background: rgba(0, 129, 255, 0.3); + border: 1px solid #36A2FF; + border-radius: 0px; + color: #91CCFF; + } +} + +.warningnumber { + position: absolute; + left: 20px; + top: 0; + display: flex; + align-items: flex-start; + + img { + margin-bottom: 30px; + } + + .num { + font-size: 50px; + text-shadow: 0px 0px 6px #8df; + color: white; + font-weight: 600; + margin-top: -5px; + } + + .today { + font-size: 19px; + font-family: titlefont; + color: #D0EAFF; + margin-top: 11px; + margin-left: 10px; + } } .content { diff --git a/src/app/pages/home/home.component.ts b/src/app/pages/home/home.component.ts index 73acf06..d120480 100644 --- a/src/app/pages/home/home.component.ts +++ b/src/app/pages/home/home.component.ts @@ -1,5 +1,7 @@ import { Component, OnInit } from '@angular/core'; - +import { Router, NavigationEnd, ActivatedRoute } from '@angular/router'; +import { Title } from '@angular/platform-browser' +import { filter } from 'rxjs/operators'; @Component({ selector: 'app-home', templateUrl: './home.component.html', @@ -7,9 +9,37 @@ import { Component, OnInit } from '@angular/core'; }) export class HomeComponent implements OnInit { - constructor() { } - + constructor(private router: Router) { } + isGasStationNav: boolean + isGasStation: boolean + isWarning: boolean = false//是否是今日预警页面 ngOnInit(): void { + + if(sessionStorage.getItem('isGasStation') == 'true'){ + this.isGasStationNav = true + }else{ + this.isGasStationNav = false + } + + this.router.events.pipe( + filter(event => event instanceof NavigationEnd) + ).subscribe((event: any) => { + if (event.url.indexOf('warning') != -1) {//控制今日预警左上角数字显示 + this.isWarning = true + } else { + this.isWarning = false + } + if (event.url.indexOf('petrolStation') != -1 && sessionStorage.getItem('isGasStation') == 'false') {//控制返回按钮显示 + this.isGasStation = true + }else{ + this.isGasStation = false + } + }); + } + + + goback(){ + history.go(-1) } } diff --git a/src/app/pages/left-domain/left-domain.component.html b/src/app/pages/left-domain/left-domain.component.html index 3bd7838..9f246ed 100644 --- a/src/app/pages/left-domain/left-domain.component.html +++ b/src/app/pages/left-domain/left-domain.component.html @@ -49,7 +49,7 @@
-
+
@@ -91,6 +91,59 @@
+ +
+
+ +
+
+ +

+
+
+

图片

+
+
+

+ + +

+
+
+
+
+ + +
+
+ +
+
+ +

+
+
+

油气回收系统类型

+

油气回收泵类型

+

图片

+
+
+

+ + + + +

+

+

+ + +

+
+
+
+
+
diff --git a/src/app/pages/left-domain/left-domain.component.scss b/src/app/pages/left-domain/left-domain.component.scss index 2c2b629..87afcd5 100644 --- a/src/app/pages/left-domain/left-domain.component.scss +++ b/src/app/pages/left-domain/left-domain.component.scss @@ -58,6 +58,7 @@ border-bottom: none; display: flex; p{ height: 32px; line-height: 32px; margin: 0px; } + .tableImg{ height: 120px; line-height: 120px; img{ max-height: 100px; width: auto; }.uploadImgBox{ margin: 35px 0 0 0; width: 50px; height: 50px; line-height: 50px; text-align: center; } } .tableHeader{ flex: 4; text-align: right; @@ -71,9 +72,6 @@ } } } -// .oilTank{ //油管设备 - -// } .fireFacilities{ //消防设施 .treeRow{ width: 100%; display: flex; height: 30px; line-height: 30px; p:first-child{ flex: 1; }; p{ margin: 0; padding: 0; .anticon{ margin-right: 5px; font-size: 16px; } } } } diff --git a/src/app/pages/left-domain/left-domain.component.ts b/src/app/pages/left-domain/left-domain.component.ts index d716d3e..004a6f4 100644 --- a/src/app/pages/left-domain/left-domain.component.ts +++ b/src/app/pages/left-domain/left-domain.component.ts @@ -15,7 +15,7 @@ import { ModeManager, ModeType } from 'src/app/babylon/controller/mode-manager'; @Component({ selector: 'app-left-domain', templateUrl: './left-domain.component.html', - styleUrls: ['./left-domain.component.scss'] + styleUrls: ['./left-domain.component.scss', '../plan/publicPop.scss'] }) export class LeftDomainComponent implements OnInit { @@ -58,6 +58,10 @@ export class LeftDomainComponent implements OnInit { item.getType() === "JY_YG" ? list.push(item) : null } else if (this.beforeFence === 3) { //消防设施 (item.getType()).slice(0, 3) === "XF_" ? list.push(item) : null + } else if (this.beforeFence === 5) { //输油管线 + item.getType() === "JY_SYGX" ? list.push(item) : null + } else if (this.beforeFence === 6) { //油气回收 + item.getType() === "JY_YQHSGX" ? list.push(item) : null } }) this.FacilityList = list diff --git a/src/app/pages/login/login.component.html b/src/app/pages/login/login.component.html index ede3a45..2af16d5 100644 --- a/src/app/pages/login/login.component.html +++ b/src/app/pages/login/login.component.html @@ -20,9 +20,9 @@
忘记密码?
- + -

+

北京安信科创软件有限公司提供技术支持和维护

diff --git a/src/app/pages/login/login.component.scss b/src/app/pages/login/login.component.scss index f476283..ceaf0a0 100644 --- a/src/app/pages/login/login.component.scss +++ b/src/app/pages/login/login.component.scss @@ -27,7 +27,7 @@ .hint { text-align: right; - margin-bottom: 40px; + margin-bottom: 50px; .forget{ cursor: pointer; color: #2399FF; diff --git a/src/app/pages/login/login.component.ts b/src/app/pages/login/login.component.ts index d379c6a..6d85972 100644 --- a/src/app/pages/login/login.component.ts +++ b/src/app/pages/login/login.component.ts @@ -33,7 +33,7 @@ export class LoginComponent implements OnInit { toRegister() { this.router.navigate(['/register']) } - + isLoading = false; submitForm(): void { for (const i in this.validateForm.controls) { this.validateForm.controls[i].markAsDirty(); @@ -43,23 +43,33 @@ export class LoginComponent implements OnInit { this.message.create('error', `请输入账号密码`); return } - if (!this.selectedRole) { - this.message.create('error', `请选择登录角色`); - return - } + // if (!this.selectedRole) { + // this.message.create('error', `请选择登录角色`); + // return + // } + this.isLoading = true; this.http.post('/api/TokenAuth/Authenticate', { userNameOrEmailAddress: this.validateForm.value.userName, password: this.validateForm.value.password }).subscribe( (data: any) => { - this.message.create('success', `登陆成功`); + sessionStorage.setItem("token", data.result.accessToken); this.cookieService.set("token", data.result.accessToken, null, '/'); this.cookieService.set("refreshToken", data.result.encryptedAccessToken, null, '/'); - this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data:any) => { - sessionStorage.setItem('userdata',JSON.stringify(data.result.user)) + this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => { + sessionStorage.setItem('userdata', JSON.stringify(data.result.user)) + this.isLoading = false; + if (data.result.user.organization.isGasStation) { + sessionStorage.setItem("isGasStation", 'true'); + this.router.navigate(['/plan/petrolStation']) + } else { + sessionStorage.setItem("isGasStation", 'false'); + this.router.navigate(['/plan']) + } + this.message.create('success', `登陆成功`); }) - this.router.navigate(['/home/plan']) + //调用服务中的function刷新token // this.token.startUp() }, diff --git a/src/app/pages/oil-station-info/oil-station-info.component.html b/src/app/pages/oil-station-info/oil-station-info.component.html index 39f76ab..6491aa9 100644 --- a/src/app/pages/oil-station-info/oil-station-info.component.html +++ b/src/app/pages/oil-station-info/oil-station-info.component.html @@ -205,7 +205,7 @@ - +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.scss b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.scss new file mode 100644 index 0000000..bc0564a --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.scss @@ -0,0 +1,92 @@ +.bigbox { + width: 100%; + height: 100%; + display: flex; + background: #fff; + box-sizing: border-box; + padding: 20px; + font-size: 15px; +} + + +.orbox { + width: 375px; + height: 100%; + overflow-y: auto; + + display: flex; + flex-direction: column; +} + +.topbox { + width: 100%; + height: 36px; + display: flex; + align-items: center; + justify-content: space-between; + + .lefttop { + span { + color: #000D21; + margin-right: 16px; + } + + .yellowspan { + color: rgb(240, 176, 37); + } + } + + .righttop { + height: 36px; + display: flex; + + button { + margin-left: 16px; + } + + nz-input-group { + height: 32px; + } + } +} + +.treeTitle { + width: 100%; + height: 36px; + line-height: 36px; + display: flex; + justify-content: space-between; + color: #000D21; + box-sizing: border-box; + padding-left: 30px; + padding-right: 180px; + background: rgba(145, 204, 255, 0.2); + border: 1px solid rgba(145, 204, 255, 0.2); +} + +.treebox { + flex: 1; + overflow-y: auto; + border: 1px solid rgba(145, 204, 255, 0.2); + border-top: 0px; + box-sizing: border-box; + padding: 10px 6px; + tr{ + th,td{ + text-align: center!important; + } + } +} + +.nodebox { + font-size: 15px; +} + +.hostListbox { + flex: 1; + margin-left: 26px; +} + +.tablebox { + margin-top: 16px; +} diff --git a/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts new file mode 100644 index 0000000..a10f11b --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts @@ -0,0 +1,108 @@ +import { HttpClient } from '@angular/common/http'; +import { Component, OnInit, AfterViewInit, ViewChild, ViewContainerRef } from '@angular/core'; +import { TreeService } from 'src/app/service/tree.service'; +import { NzFormatEmitEvent, NzTreeComponent, NzTreeNodeOptions } from 'ng-zorro-antd/tree'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { NzModalService } from 'ng-zorro-antd/modal'; +import { NzMessageService } from 'ng-zorro-antd/message'; +import { AddhostComponent } from './addhost/addhost.component'; +@Component({ + selector: 'app-analysis-of-the-host', + templateUrl: './analysis-of-the-host.component.html', + styleUrls: ['./analysis-of-the-host.component.scss'] +}) +export class AnalysisOfTheHostComponent implements OnInit { + + constructor(private fb: FormBuilder, private http: HttpClient, private toTree: TreeService, private modal: NzModalService, private message: NzMessageService, private viewContainerRef: ViewContainerRef) { } + ngOnInit(): void { + this.getAllOrganization() + } + + + //获取所有组织机构 + searchValue = ''; + nzExpandAll = false; + totalCount: string + getAllOrganization() { + this.http.get('/api/services/app/Organization/GetAll').subscribe((data: any) => { + this.totalCount = data.result.totalCount + data.result.items.forEach(element => { + element.key = element.id + element.title = element.displayName + element.selectable = false + }); + this.nodes = [...this.toTree.toTree(data.result.items)] + this.defaultExpandedKeys = [...this.defaultExpandedKeys] + }) + } + + + @ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent; + + defaultExpandedKeys = []; + + nodes: any[] = [] + nzSelectedKeys: any[] = [] + selectedOilStation:any + nzClick(event: NzFormatEmitEvent): void { + console.log(event.node.origin); + if(event.node.origin.isGasStation){//如果点击的是加油站才生效 + this.nzSelectedKeys[0] = event.node.origin.id + this.nzSelectedKeys = [...this.nzSelectedKeys] + this.selectedOilStation = event.node.origin + this.getHost() + }else{ + this.message.info('只有加油站才可以增加主机'); + } + } + + //获得加油站的主机 + getHost(){ + + } + + ngAfterViewInit(): void { + + } + + //新增分析主机 + addHost() { + const modal = this.modal.create({ + nzTitle: '新增加油站主机', + nzContent: AddhostComponent, + nzViewContainerRef: this.viewContainerRef, + nzWidth: 288, + nzComponentParams: {}, + nzOnOk: async () => { + if (instance.validateForm.valid) { + await new Promise(resolve => { + console.log('表单信息', instance.validateForm) + + let body = { + // name: instance.validateForm.value.name, + // DisplayName: instance.validateForm.value.name, + // grantedPermissions: arr + } + this.http.post('/api/services/app/Role/Create', body).subscribe(data => { + resolve(data) + this.message.create('success', '创建成功!'); + // this.getAllRoles() + return true + }) + }) + } else { + this.message.create('warning', '请填写完整!'); + return false + } + } + }); + const instance = modal.getContentComponent(); + } + edit(data) { + + } + delete(data) { + + } + listOfData: any[] = []; +} diff --git a/src/app/system-management/analysis-of-the-host/edithost/edithost.component.html b/src/app/system-management/analysis-of-the-host/edithost/edithost.component.html new file mode 100644 index 0000000..25287ae --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/edithost/edithost.component.html @@ -0,0 +1 @@ +

edithost works!

diff --git a/src/app/system-management/analysis-of-the-host/edithost/edithost.component.scss b/src/app/system-management/analysis-of-the-host/edithost/edithost.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/system-management/analysis-of-the-host/edithost/edithost.component.ts b/src/app/system-management/analysis-of-the-host/edithost/edithost.component.ts new file mode 100644 index 0000000..83c9af2 --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/edithost/edithost.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-edithost', + templateUrl: './edithost.component.html', + styleUrls: ['./edithost.component.scss'] +}) +export class EdithostComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/system-management/navigation/navigation.component.html b/src/app/system-management/navigation/navigation.component.html index 3ab03ce..c32cf4d 100644 --- a/src/app/system-management/navigation/navigation.component.html +++ b/src/app/system-management/navigation/navigation.component.html @@ -16,6 +16,7 @@
  • 组织机构管理
  • 用户管理
  • 角色管理
  • +
  • 分析主机管理
  • diff --git a/src/app/system-management/navigation/navigation.component.ts b/src/app/system-management/navigation/navigation.component.ts index c500877..6604860 100644 --- a/src/app/system-management/navigation/navigation.component.ts +++ b/src/app/system-management/navigation/navigation.component.ts @@ -13,8 +13,6 @@ export class NavigationComponent implements OnInit { ngOnInit(): void { } signOut() { - // history.go(-1); - // /home/warning/admin - this.router.navigate(['/home/warning/admin']) + this.router.navigate(['/plan']) } } diff --git a/src/app/system-management/system-management-routing.module.ts b/src/app/system-management/system-management-routing.module.ts index 843186b..c0bbef7 100644 --- a/src/app/system-management/system-management-routing.module.ts +++ b/src/app/system-management/system-management-routing.module.ts @@ -5,11 +5,13 @@ import { AuthGuard } from '../auth.guard' import { RoleComponent } from './role/role.component'; import { OrganizationComponent } from './organization/organization.component'; import { UserComponent } from './user/user.component'; +import { AnalysisOfTheHostComponent } from './analysis-of-the-host/analysis-of-the-host.component'; const routes: Routes = [ { path: 'organization', component: OrganizationComponent }, { path: 'user', component: UserComponent }, - { path: 'role', component: RoleComponent } + { path: 'role', component: RoleComponent }, + { path: 'host', component: AnalysisOfTheHostComponent } ]; @NgModule({ diff --git a/src/app/system-management/system-management.module.ts b/src/app/system-management/system-management.module.ts index fd6c33c..d0fc6ae 100644 --- a/src/app/system-management/system-management.module.ts +++ b/src/app/system-management/system-management.module.ts @@ -27,8 +27,11 @@ import { NzTreeSelectModule } from 'ng-zorro-antd/tree-select'; import { AddorComponent } from './organization/addor/addor.component'; import { EditorComponent } from './organization/editor/editor.component'; import { NzCheckboxModule } from 'ng-zorro-antd/checkbox'; +import { AnalysisOfTheHostComponent } from './analysis-of-the-host/analysis-of-the-host.component'; +import { AddhostComponent } from './analysis-of-the-host/addhost/addhost.component'; +import { EdithostComponent } from './analysis-of-the-host/edithost/edithost.component'; @NgModule({ - declarations: [OrganizationComponent, UserComponent, RoleComponent, NavigationComponent, AdduserComponent, EdituserComponent, AddroleComponent, EditroleComponent, AddorComponent, EditorComponent], + declarations: [OrganizationComponent, UserComponent, RoleComponent, NavigationComponent, AdduserComponent, EdituserComponent, AddroleComponent, EditroleComponent, AddorComponent, EditorComponent, AnalysisOfTheHostComponent, AddhostComponent, EdithostComponent], imports: [ CommonModule, SystemRoutingModule, @@ -50,7 +53,7 @@ import { NzCheckboxModule } from 'ng-zorro-antd/checkbox'; NzTreeSelectModule, NzCheckboxModule ], - entryComponents :[AdduserComponent,EdituserComponent,AddroleComponent,EditroleComponent,AddorComponent,EditorComponent] + entryComponents :[AdduserComponent,EdituserComponent,AddroleComponent,EditroleComponent,AddorComponent,EditorComponent,AddhostComponent,EdithostComponent] }) export class SystemManagementModule { } diff --git a/src/app/ui/tabbar/tabbar.component.html b/src/app/ui/tabbar/tabbar.component.html index a95d6c6..cb138f4 100644 --- a/src/app/ui/tabbar/tabbar.component.html +++ b/src/app/ui/tabbar/tabbar.component.html @@ -16,8 +16,8 @@
      -
    • 基本信息
    • -
    • 器材信息
    • +
    • 基本信息
    • +
    • 器材信息
    • 系统管理
    • 退出系统
    diff --git a/src/app/ui/tabbar/tabbar.component.ts b/src/app/ui/tabbar/tabbar.component.ts index e8ca9a4..87f7986 100644 --- a/src/app/ui/tabbar/tabbar.component.ts +++ b/src/app/ui/tabbar/tabbar.component.ts @@ -21,9 +21,10 @@ export class TabbarComponent implements OnInit { setInterval(() => { this.getTime() }, 1000); - this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => { - this.surname = data.result.user.surname - }) + this.surname = JSON.parse(sessionStorage.getItem('userdata')).surname + // this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => { + // this.surname = data.result.user.surname + // }) } //获得时间 diff --git a/src/assets/images/expand.png b/src/assets/images/expand.png new file mode 100644 index 0000000..53293db Binary files /dev/null and b/src/assets/images/expand.png differ diff --git a/src/assets/images/icon/host.png b/src/assets/images/icon/host.png new file mode 100644 index 0000000..20d356c Binary files /dev/null and b/src/assets/images/icon/host.png differ diff --git a/src/assets/images/point.png b/src/assets/images/point.png new file mode 100644 index 0000000..3ade358 Binary files /dev/null and b/src/assets/images/point.png differ diff --git a/src/assets/images/stepIcon.png b/src/assets/images/stepIcon.png new file mode 100644 index 0000000..ec576ff Binary files /dev/null and b/src/assets/images/stepIcon.png differ diff --git a/src/assets/images/unexpand.png b/src/assets/images/unexpand.png new file mode 100644 index 0000000..818516d Binary files /dev/null and b/src/assets/images/unexpand.png differ diff --git a/src/assets/images/uploadImg.png b/src/assets/images/uploadImg.png new file mode 100644 index 0000000..974cb7e Binary files /dev/null and b/src/assets/images/uploadImg.png differ diff --git a/src/assets/images/uploadVideo.png b/src/assets/images/uploadVideo.png new file mode 100644 index 0000000..6a27d28 Binary files /dev/null and b/src/assets/images/uploadVideo.png differ diff --git a/src/assets/images/warningnum.png b/src/assets/images/warningnum.png new file mode 100644 index 0000000..a312904 Binary files /dev/null and b/src/assets/images/warningnum.png differ diff --git a/src/styles.scss b/src/styles.scss index 88c4e22..84b7cca 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -104,10 +104,24 @@ h1 { //三维场景 #threeDimensional { - .ant-tree{ color: #C4E2FC; } - .ant-tree,.ant-tree-node-content-wrapper:hover,.ant-tree-node-content-wrapper.ant-tree-node-selected { background-color: transparent; } - .ant-tree-node-content-wrapper { width: 100%; } - .ant-select-single:not(.ant-select-customize-input) .ant-select-selector { border: none; border-radius: 0px; } + .ant-tree{ color: #C4E2FC; } //tree + .ant-tree,.ant-tree-node-content-wrapper:hover,.ant-tree-node-content-wrapper.ant-tree-node-selected { background-color: transparent; } //tree + .ant-tree-node-content-wrapper { width: 100%; } //tree + + .ant-select-single:not(.ant-select-customize-input) .ant-select-selector { border: none; border-radius: 0px; } //select + + .ant-collapse,.ant-collapse-item,.ant-collapse-header,.ant-collapse-content{ border-radius: 0px; border: none; } //可展开面板 + .ant-collapse-content{ background: rgba(0, 59, 110, 0.9); color: #fff; } //可展开面板 + .ant-collapse-content-box{ padding: 0; } //可展开面板 + .ant-collapse-header{ + padding: 0 0 0 25px; + height: 30px; + line-height: 28px; + background: linear-gradient(360deg, #000D21 0%, rgba(0, 59, 110, 0.8) 100%); + border: 1px solid rgba(35, 217, 255, 0.4); + color: #23D9FF; + .ant-collapse-arrow{ left: 5px; } //可展开面板 + } //滚动条样式 ::-webkit-scrollbar { width: 5px; diff --git a/src/theme.less b/src/theme.less index 4880919..ed42a31 100644 --- a/src/theme.less +++ b/src/theme.less @@ -5,7 +5,8 @@ //分页器 #recordsboxadmin, #recordsbox, -#equipmentInfo { +#equipmentInfo, +#stationPlanBox { .ant-pagination-total-text, .ant-pagination-options-quick-jumper { @@ -40,6 +41,25 @@ color: #91CCFF; } +//自营和加盟 +.ziying, +.jiameng { + display: inline-block; + width: 36px; + height: 20px; + line-height: 20px; + text-align: center; + background: #2399FF; + opacity: 1; + border-radius: 2px; + color: #fff !important; + font-size: 12px; +} + +.jiameng { + background: #FF9963; +} + //接收报警弹出框 .ant-notification { width: 500px; @@ -133,12 +153,17 @@ //表格 #userBox, -#roleBox { +#roleBox, +#hostbox { .ant-table-thead>tr>th { background: rgba(145, 204, 255, 0.15); } } - +#hostbox{ + .ant-table-thead > tr > th,.ant-table-tbody > tr > td{ + text-align: center; + } +} @select-background: transparent; @border-color-base: #91CCFF; @@ -246,3 +271,28 @@ border: none; } } + + +#stationPlanBox { + .ant-tree .ant-tree-node-content-wrapper:hover ,.ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected{ + background: linear-gradient(90deg, rgba(0, 13, 33, 0) 0%, #2399FF 50%, rgba(0, 13, 33, 0) 100%); + } + .ant-tree .ant-tree-node-content-wrapper{ + padding: 2px 20px; + // margin-left: 30px; + } + nz-tree{ + nz-tree-node{ + margin-left: 20px; + } + nz-tree-node:nth-child(1){ + margin-left: 0px; + } + } + +} + + +.ant-modal-close-x{ + color: #fff; +} \ No newline at end of file
    营业执照 diff --git a/src/app/pages/oil-station-info/oil-station-info.component.ts b/src/app/pages/oil-station-info/oil-station-info.component.ts index 25c6d36..677f626 100644 --- a/src/app/pages/oil-station-info/oil-station-info.component.ts +++ b/src/app/pages/oil-station-info/oil-station-info.component.ts @@ -4,6 +4,7 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; import { NzMessageService } from 'ng-zorro-antd/message'; import * as moment from 'moment'; +import Viewer from 'viewerjs'; @Component({ selector: 'app-oil-station-info', templateUrl: './oil-station-info.component.html', @@ -49,12 +50,15 @@ export class OilStationInfoComponent implements OnInit { this.getInfo() + + } validityTime: any = []//营业执照有效期 //获取油站信息 + gallery getInfo() { this.http.get('/api/services/app/GasStation/Get', { params: { @@ -72,6 +76,14 @@ export class OilStationInfoComponent implements OnInit { this.validityTime[1] = data.result.validityEndTime this.validityTime = [...this.validityTime] console.log(this.validityTime) + setTimeout(() => { + this.gallery = new Viewer(document.getElementById('images'), { + show: () => { // 动态加载图片后,更新实例 + this.gallery.update(); + }, + }); + }, 0); + }, err => { console.log('油站错误信息', err.error.error.message) }) @@ -181,17 +193,25 @@ export class OilStationInfoComponent implements OnInit { } //设置文件路径并上传 postFilePath - openFileSelect(file: File, extensionPath: string) { + async openFileSelect(file: File, extensionPath: string) { this.postFilePath = extensionPath; let fileSize = file.size || null //上传文件的总大小 let shardSize = 5 * 1024 * 1024 //5MB 超过5MB要分块上传 if (fileSize >= shardSize) // 超过5MB要分块上传 { - this.postFileByMul(file); + await this.postFileByMul(file); + setTimeout(() => { + this.gallery.destroy() + this.gallery = new Viewer(document.getElementById('images')); + }, 0); } else //普通上传 { - this.postFile(file); + await this.postFile(file); + setTimeout(() => { + this.gallery.destroy() + this.gallery = new Viewer(document.getElementById('images')); + }, 0); } } //上传文件 diff --git a/src/app/pages/pages-routing.module.ts b/src/app/pages/pages-routing.module.ts index 1da3c55..19af134 100644 --- a/src/app/pages/pages-routing.module.ts +++ b/src/app/pages/pages-routing.module.ts @@ -8,16 +8,17 @@ import { TodayWarningAdminComponent } from './today-warning-admin/today-warning- import { CriminalRecordsAdminComponent } from './criminal-records-admin/criminal-records-admin.component'; import { OilStationInfoComponent } from './oil-station-info/oil-station-info.component'; import { EquipmentInfoComponent } from './equipment-info/equipment-info.component'; +import { PlanAdminComponent } from './plan-admin/plan-admin.component'; const routes: Routes = [ - { path: 'plan', component: PlanComponent , data: { permission: 'xxxx' },canActivate: [AuthGuard]}, + { path: 'plan', component: PlanAdminComponent , data: { permission: 'xxxx' },canActivate: [AuthGuard]}, + { path: 'plan/petrolStation', component: PlanComponent , data: { permission: 'xxxx' },canActivate: [AuthGuard]}, + { path: 'warning', component: TodayWarningAdminComponent }, { path: 'warning/petrolStation', component: TodayWarningComponent }, - { path: 'warning/admin', component: TodayWarningAdminComponent }, + { path: 'records', component: CriminalRecordsAdminComponent }, { path: 'records/petrolStation', component: CriminalRecordsComponent }, - { path: 'records/admin', component: CriminalRecordsAdminComponent }, { path: 'equipmentInfo', component: EquipmentInfoComponent }, { path: 'oliStationInfo', component: OilStationInfoComponent } - ]; @NgModule({ diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index 73c0fc2..b4ecec9 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -30,6 +30,8 @@ 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 { NzCollapseModule } from 'ng-zorro-antd/collapse'; +import { NzStepsModule } from 'ng-zorro-antd/steps'; 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'; @@ -37,10 +39,18 @@ import { OilStationInfoComponent } from './oil-station-info/oil-station-info.com import { LeftDomainComponent } from './left-domain/left-domain.component'; import { AddequipmentComponent } from './equipment-info/addequipment/addequipment.component'; import { EditequipmentComponent } from './equipment-info/editequipment/editequipment.component'; +import { NzTreeSelectModule } from 'ng-zorro-antd/tree-select'; +import { PlanAdminComponent } from './plan-admin/plan-admin.component'; +import { GetOutOfLineDetailsComponent } from './today-warning/get-out-of-line-details/get-out-of-line-details.component'; + @NgModule({ - declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent, TodayWarningAdminComponent, CriminalRecordsAdminComponent, LeftDomainComponent, EquipmentInfoComponent, OilStationInfoComponent, AddequipmentComponent, EditequipmentComponent], + declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent, + TodayWarningAdminComponent, CriminalRecordsAdminComponent, LeftDomainComponent, EquipmentInfoComponent, OilStationInfoComponent, + AddequipmentComponent, EditequipmentComponent,PlanAdminComponent, GetOutOfLineDetailsComponent], + + imports: [ PagesRoutingModule, CommonModule, @@ -67,9 +77,12 @@ import { EditequipmentComponent } from './equipment-info/editequipment/editequip NzDropDownModule, NzMessageModule, NzSpinModule, - NzTreeModule + NzTreeModule, + NzTreeSelectModule, + NzCollapseModule, + NzStepsModule ], - entryComponents: [AddequipmentComponent, EditequipmentComponent], + entryComponents: [AddequipmentComponent, EditequipmentComponent,GetOutOfLineDetailsComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) diff --git a/src/app/pages/plan-admin/plan-admin.component.html b/src/app/pages/plan-admin/plan-admin.component.html new file mode 100644 index 0000000..ab4456a --- /dev/null +++ b/src/app/pages/plan-admin/plan-admin.component.html @@ -0,0 +1,128 @@ + +
    +
    +
    + +
    +
    + + + + + + + + + {{ node.title }} + + + +
    +
    +
    +
    + +
    + +
    +
    +
    +
    + +
    +
    + 加油站名称 +
    +
    + 区域 +
    +
    + 所属公司 +
    +
    + 联系人 +
    +
    + 联系电话 +
    +
    + 操作 +
    +
    +
    +
    +
    + 自营 +
    +
    + 中化山东省淄博市第6加油站 +
    +
    + 山东-淄博 +
    +
    + 中化某某公司 +
    +
    + 张三三 +
    +
    + 0566-5897888 +
    +
    + 查看 +
    +
    +
    +
    + +
    +
    +
    \ No newline at end of file diff --git a/src/app/pages/plan-admin/plan-admin.component.scss b/src/app/pages/plan-admin/plan-admin.component.scss new file mode 100644 index 0000000..00604e8 --- /dev/null +++ b/src/app/pages/plan-admin/plan-admin.component.scss @@ -0,0 +1,137 @@ +.stationPlanBox { + width: 100%; + height: 100%; + box-sizing: border-box; + padding: 20px 24px; + display: flex; +} + +.title { + width: 100%; + height: 48px; +} + +.orbox { + height: 100%; + width: 360px; + margin-right: 40px; + display: flex; + flex-direction: column; + + .or { + flex: 1; + overflow-y: auto; + border: 1px solid rgba(54, 162, 255, 0.3); + background: linear-gradient(180deg, rgba(3, 0, 0, 0) 0%, rgba(0, 46, 91, 0.68) 100%); + margin-top: 12px; + box-sizing: border-box; + padding: 18px 12px; + + nz-tree { + background: none; + color: #C4E2FC; + } + } +} + +.stationList { + flex: 1; + + display: flex; + flex-direction: column; + + .search { + box-sizing: border-box; + padding-left: 22px; + padding-right: 33px; + width: 100%; + height: 32px; + margin-top: 14px; + margin-bottom: 22px; + + form { + width: 100%; + height: 32px; + display: flex; + justify-content: space-around; + + input { + background: none; + border: 1px solid #91CCFF; + color: #fff; + } + + .searchParams { + width: 28%; + } + + .btn { + width: 5%; + } + } + + + } + + .tablebox { + flex: 1; + display: flex; + flex-direction: column; + align-items: center; + overflow: hidden; + + .table { + color: white; + flex: 1; + width: 96%; + display: flex; + flex-direction: column; + overflow: hidden; + + .th { + height: 40px; + line-height: 40px; + background: rgba(35, 153, 255, 0.2); + border: 1px solid rgba(35, 217, 255, 0.4); + box-shadow: 0 0 3px 0 rgba(35, 217, 255, 0.4) inset; + color: #23D9FF; + } + + .tbody { + flex: 1; + overflow-y: auto; + + .tr { + height: 40px; + line-height: 40px; + border-bottom: 1px solid #0d3761; + + div { + color: #91CCFF; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + + .look { + color: #36A2FF; + cursor: pointer; + } + } + + } + } + } + + .pagination { + margin-top: 26px; + display: flex; + align-items: center; + justify-content: center; + } + + ::-webkit-scrollbar { + width: 0px; + } + + } +} diff --git a/src/app/pages/plan-admin/plan-admin.component.ts b/src/app/pages/plan-admin/plan-admin.component.ts new file mode 100644 index 0000000..73538f4 --- /dev/null +++ b/src/app/pages/plan-admin/plan-admin.component.ts @@ -0,0 +1,70 @@ +import { Component, OnInit, ViewChild } from '@angular/core'; +import { HttpClient } from '@angular/common/http'; +import { TreeService } from 'src/app/service/tree.service'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { NzContextMenuService, NzDropdownMenuComponent } from 'ng-zorro-antd/dropdown'; +import { NzFormatEmitEvent, NzTreeComponent, NzTreeNode } from 'ng-zorro-antd/tree'; +import { Router } from '@angular/router'; +@Component({ + selector: 'app-plan-admin', + templateUrl: './plan-admin.component.html', + styleUrls: ['./plan-admin.component.scss'] +}) +export class PlanAdminComponent implements OnInit { + validateForm!: FormGroup; + @ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent; + constructor(private http: HttpClient, private toTree: TreeService, private fb: FormBuilder, private nzContextMenuService: NzContextMenuService, private router: Router) { } + list: any = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] + ngOnInit(): void { + this.validateForm = this.fb.group({ + name: [null], + linkman: [null], + phone: [null] + }); + this.getAllOrganization() + } + submitForm(): void { + for (const i in this.validateForm.controls) { + this.validateForm.controls[i].markAsDirty(); + this.validateForm.controls[i].updateValueAndValidity(); + } + } + resetForm(e: MouseEvent): void { + e.preventDefault(); + this.validateForm.reset(); + for (const key in this.validateForm.controls) { + this.validateForm.controls[key].markAsPristine(); + this.validateForm.controls[key].updateValueAndValidity(); + } + } + //获取所有组织机构 + nodes: any = [] + nzExpandAll = false + getAllOrganization() { + this.http.get('/api/services/app/Organization/GetAll').subscribe((data: any) => { + data.result.items.forEach(element => { + element.key = element.id + element.title = element.displayName + }); + this.nodes = [...this.toTree.toTree(data.result.items)] + this.nzExpandAll = true + }) + } + + look() { + this.router.navigate(['/plan/petrolStation']) + } + nzExpandedKeys: any = [] + activatedNode?: NzTreeNode; + //点击tree节点 + activeNode(data: NzFormatEmitEvent): void { + this.activatedNode = data.node!; + // console.log(data) + } + + expand(e, node) { + e.stopPropagation() + node.isExpanded = !node.isExpanded + } + +} diff --git a/src/app/pages/plan/plan.component.html b/src/app/pages/plan/plan.component.html index 9fd0863..2585b0e 100644 --- a/src/app/pages/plan/plan.component.html +++ b/src/app/pages/plan/plan.component.html @@ -16,7 +16,7 @@ -
    +
    {{allFence[selectFence]}}
    @@ -28,7 +28,7 @@
    -
    +

    @@ -48,12 +48,24 @@ -
    +
    -
    - -

    {{item.getIconName()}}

    -
    + +
    + +

    {{item.getIconName()}}

    +
    +
    + + + +
    + +

    {{item.name}}

    +
    +
    +
    +
    @@ -78,6 +90,37 @@
    + +
    +
    +
    +

    灾情描述

    + +
    +
    +
    +
    +
    +
    + + + +
    +
    + +
    diff --git a/src/app/pages/plan/plan.component.scss b/src/app/pages/plan/plan.component.scss index e429778..6b10bb4 100644 --- a/src/app/pages/plan/plan.component.scss +++ b/src/app/pages/plan/plan.component.scss @@ -180,7 +180,7 @@ //右侧图标栏 .rightIcons{ - width: 60px; + width: 100px; height: 70%; position: absolute; top: 0; @@ -188,19 +188,23 @@ right: 1%; margin: auto;/*这行代码是关键*/ color: #fff; - background: rgba(0,17,33,0.7); - border-radius: 10px; - display: flex; - flex-direction: column; - align-items: center; + background: linear-gradient(360deg, #000D21 0%, rgba(0, 59, 110, 0.8) 100%); overflow: hidden; .autoScroll{ width: 30px; text-align: center; } + .bottomCenter::-webkit-scrollbar { display: none; } + .bottomCenter { + scrollbar-width: none; /* firefox */ + -ms-overflow-style: none; /* IE 10+ */ + overflow-x: hidden; + overflow-y: auto; + } .bottomCenter{ - flex: 1; + width: 100%; + height: 100%; overflow-x: hidden; overflow-y: auto; .everyIcon { - width: 60px; + width: 100px; height: 58px; line-height: normal; text-align: center; @@ -219,7 +223,7 @@ height: 38px; position: absolute; right: 1px; - top: 3%; + top: 1%; display: flex; >div { height: 38px; border-radius: 5px; } button { @@ -254,4 +258,67 @@ margin-right: 10px; } .selectRightTopFast { border: 1px solid #fff; } //选种样式 +} + +//左右侧栏 上移 +.publicMoveUp{ + height: 70%; + top: 10%; + bottom: auto; +} +//底部处置预案 +.bottomPlan{ + width: 95%; + position: absolute; + left: 0; + right: 0; + bottom: 1%; + margin: auto;/*这行代码是关键*/ + color: #fff; + .pulicPlanDiv{ width: 100%; padding: 0 15px; overflow: hidden; background: linear-gradient(360deg, #000D21 0%, rgba(0, 59, 110, 0.8) 100%); } + .bottomPlanHeader{ + height: 80px; + display: flex; + align-items: center; + box-shadow: 0px 0px 6px #2399FF; + .planHeaderText{ + flex: 1; + font-size: 14px; + p{ margin: 0; height: 20px; line-height: 18px; } + textarea{ width: 100%; height: 50px; background: rgba(145, 204, 255, 0.41); border: 1px solid #91CCFF; padding: 0; resize:none; outline: none; } + } + .planHeaderImg{ width: 100px; height: 100%; text-align: center; } + .planHeaderVideo{ width: 120px; height: 100%; text-align: center; } + } + .bottomPlanCenter{ + height: 35px; + line-height: 38px; + display: flex; + overflow: hidden; + label{ + display: block; + } + label:first-child{ + width: 15%; + height: 100%; + text-align: center; + button { + width: 60%; + height: 30px; + line-height: 30px; + color: #23D9FF; + //padding: 0; + background: rgba(35, 153, 255, 0.41); + border: 1px solid rgba(35, 217, 255, 0.4); + } + } + label:nth-child(2){ flex: 1; overflow: hidden; img{ height: 35px; width: auto; vertical-align: top; } } + label:last-child{ + width: 15%; + height: 100%; + text-align: center; + color: #fff; + .anticon{ font-size: 20px; margin: 0 10px; } + } + } } \ No newline at end of file diff --git a/src/app/pages/plan/plan.component.ts b/src/app/pages/plan/plan.component.ts index f2fbafa..5938a85 100644 --- a/src/app/pages/plan/plan.component.ts +++ b/src/app/pages/plan/plan.component.ts @@ -19,6 +19,9 @@ import { EventManager } from '@angular/platform-browser'; import { NzMessageService } from 'ng-zorro-antd/message'; import { LeftDomainComponent } from '../left-domain/left-domain.component'; import { JYZInfoMoudleType } from 'src/app/babylon/model/data/institution/jyz-show-data'; +import { AllMarkData } from 'src/app/babylon/model/data/mark/all-mark-data'; +import { MarkData } from 'src/app/babylon/model/data/mark/mark-data'; +import { MarkWindow } from 'src/app/babylon/view/mark-window/mark-window'; @@ -104,7 +107,7 @@ export class PlanComponent implements OnInit { let buildingWindow: BuildingWindow = this.beforeOneSatus.buildingWindow; let fenceType: JYZInfoMoudleType = this.getFenceType(type) if (this.selectFence != type) { - this.isShowChildComponent && this.leftDomain ? this.leftDomain.initComponent(type) : null; //手动初始化子组件 + this.isShowChildComponent && this.leftDomain && type != 4 ? this.leftDomain.initComponent(type) : null; //手动初始化子组件 this.selectFence = type this.isShowChildComponent = true buildingWindow.changeJYZInfoModel(fenceType, true) @@ -241,7 +244,8 @@ export class PlanComponent implements OnInit { } } - allFacilityUIItemes: FacilityUIItem[] = []; //底部所有 图标 + allFacilityUIItemes: FacilityUIItem[] = []; //右侧所有 图标 + allMarkData: planIcons = new planIcons(); //右侧处置预案所有 图标 beforeOneIcon: string = null; //当前选择 图标 // 获取 底部图标栏list @@ -251,13 +255,23 @@ export class PlanComponent implements OnInit { } //选择底部图标 - selectBottomIcon(e: FacilityUIItem) { - if (this.beforeOneIcon != e.getIconID()) { - this.beforeOneIcon = e.getIconID() - e.select() - } else { - this.beforeOneIcon = null - e.unSelect() + selectBottomIcon(e: FacilityUIItem | MarkData) { + if (e instanceof FacilityUIItem) { + if (this.beforeOneIcon != e.getIconID()) { + this.beforeOneIcon = e.getIconID() + e.select() + } else { + this.beforeOneIcon = null + e.unSelect() + } + } else if (e instanceof MarkData) { + if (this.beforeOneIcon != e.key) { + this.beforeOneIcon = e.key + MarkWindow.instance.selectMarkDataPrefab(true, e) + } else { + this.beforeOneIcon = null + MarkWindow.instance.selectMarkDataPrefab(false, e) + } } } @@ -355,6 +369,11 @@ export class PlanComponent implements OnInit { } +// 处置预案 所有图标 +export class planIcons { + iconsName: string[] = ["灾情","内部力量","外部力量","其他"] + icons: MarkData[][] = [AllMarkData.CreateAllMarkData().marks_Disaster,AllMarkData.CreateAllMarkData().marks_Inside,AllMarkData.CreateAllMarkData().marks_Outside,AllMarkData.CreateAllMarkData().marks_Other,] +} //创建/编辑 建筑dataType export class modelBuilding { name: string = ""; diff --git a/src/app/pages/plan/publicPop.scss b/src/app/pages/plan/publicPop.scss index 4ca89fc..f658838 100644 --- a/src/app/pages/plan/publicPop.scss +++ b/src/app/pages/plan/publicPop.scss @@ -14,9 +14,22 @@ overflow: hidden; display: inline-block; } -.uploadBackGround input { +.bottomPlanUpload{ + margin-top: 5px; + width: 70px; + height: 70px; + line-height: 65px; + position: relative; + cursor: pointer; + background: rgba(145, 204, 255, 0.41); + border: 1px dashed #91CCFF; + overflow: hidden; + display: inline-block; +} +.uploadBackGround input,.bottomPlanUpload input { position: absolute; width: 100%; + height: 100%; right: 0; top: 0; opacity: 0; diff --git a/src/app/pages/today-warning-admin/today-warning-admin.component.html b/src/app/pages/today-warning-admin/today-warning-admin.component.html index 58ed49f..5bead1f 100644 --- a/src/app/pages/today-warning-admin/today-warning-admin.component.html +++ b/src/app/pages/today-warning-admin/today-warning-admin.component.html @@ -10,6 +10,7 @@ + @@ -17,20 +18,19 @@ - - - + - - - - - + + + +
    +
    diff --git a/src/app/pages/today-warning-admin/today-warning-admin.component.scss b/src/app/pages/today-warning-admin/today-warning-admin.component.scss index 0a9adc7..ac58c65 100644 --- a/src/app/pages/today-warning-admin/today-warning-admin.component.scss +++ b/src/app/pages/today-warning-admin/today-warning-admin.component.scss @@ -38,6 +38,9 @@ color: rgba(145, 204, 255, 0.95); ; } + nz-tree-select{ + color: rgba(145, 204, 255, 0.95); + } nz-date-picker { background-color: rgba(0, 0, 0, 0); diff --git a/src/app/pages/today-warning-admin/today-warning-admin.component.ts b/src/app/pages/today-warning-admin/today-warning-admin.component.ts index 6b9169b..230fa7d 100644 --- a/src/app/pages/today-warning-admin/today-warning-admin.component.ts +++ b/src/app/pages/today-warning-admin/today-warning-admin.component.ts @@ -1,6 +1,8 @@ import { Component, OnInit } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; -import { Router } from '@angular/router' +import { Router } from '@angular/router'; +import { HttpClient } from '@angular/common/http'; +import { TreeService } from 'src/app/service/tree.service'; @Component({ selector: 'app-today-warning-admin', templateUrl: './today-warning-admin.component.html', @@ -9,7 +11,7 @@ import { Router } from '@angular/router' export class TodayWarningAdminComponent implements OnInit { validateForm!: FormGroup; - constructor(private fb: FormBuilder, private router: Router) { } + constructor(private http: HttpClient,private fb: FormBuilder, private router: Router, private toTree: TreeService) { } ngOnInit(): void { this.validateForm = this.fb.group({ @@ -20,6 +22,28 @@ export class TodayWarningAdminComponent implements OnInit { site: [null], datePicker: [null] }); + this.yujingType() + this.getAllOrganization() + } + //预警类型接口 + yujingTypes:any //预警接口数据 + yujingType(){ + this.http.get('/api/services/app/Violation/GetAllList').subscribe((data: any) => { + this.yujingTypes=data.result + } + ) + } + //获取所有组织机构 + nodes:any = [] + getAllOrganization() { + this.http.get('/api/services/app/Organization/GetAll').subscribe((data: any) => { + data.result.items.forEach(element => { + element.key = element.code + element.title = element.displayName + }); + this.nodes = [...this.toTree.toTree(data.result.items)] + console.log(this.nodes) + }) } submitForm(): void { @@ -68,6 +92,6 @@ export class TodayWarningAdminComponent implements OnInit { } look() { - this.router.navigate(['home/warning/petrolStation']) + this.router.navigate(['warning/petrolStation']) } } diff --git a/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.html b/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.html new file mode 100644 index 0000000..993acf0 --- /dev/null +++ b/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.html @@ -0,0 +1,23 @@ + +
    +
    +
    +
    + 违规截图 +
    +
    +
    + 违规视频 +
    +
    +
    +
    +
    +
    + 违规截图 +
    +
    + 违规视频 +
    +
    +
    \ No newline at end of file diff --git a/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.scss b/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.scss new file mode 100644 index 0000000..78ae625 --- /dev/null +++ b/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.scss @@ -0,0 +1,61 @@ +.box { + width: 100%; + height: 700px; + color: #fff; + display: flex; + flex-direction: column; +} + +.titlebox { + width: 100%; + height: 48px; + background: #041d3c; + display: flex; + align-items: center; + + .title { + width: 100%; + height: 32px; + background: linear-gradient(270deg, rgba(35, 153, 255, 0) 0%, rgba(35, 153, 255, 0.57) 50%, rgba(35, 153, 255, 0) 100%); + display: flex; + justify-content: center; + + div { + width: 120px; + height: 32px; + text-align: center; + line-height: 32px; + font-family: sybold; + font-size: 16px; + position: relative; + cursor: pointer; + margin: 0 18px; + .border { + position: absolute; + bottom: -7px; + left: -18px; + width: 120px; + height: 4px; + } + } + + .selected { + background: linear-gradient(90deg, #1662a9 0%, #25b7d4 50%, #1662a9 100%); + + .border { + background: linear-gradient(90deg, rgba(35, 217, 255, 0) 0%, #25b7d4 50%, rgba(35, 217, 255, 0) 100%); + } + + } + } +} + +.ant-modal-close { + color: #fff; +} + +.content { + flex: 1; + box-sizing: border-box; + padding: 18px; +} diff --git a/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts b/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts new file mode 100644 index 0000000..9b914cf --- /dev/null +++ b/src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts @@ -0,0 +1,20 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-get-out-of-line-details', + templateUrl: './get-out-of-line-details.component.html', + styleUrls: ['./get-out-of-line-details.component.scss'] +}) +export class GetOutOfLineDetailsComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + + + selectedType:string = 'img' + contentType(type){ + this.selectedType = type + } +} diff --git a/src/app/pages/today-warning/today-warning.component.html b/src/app/pages/today-warning/today-warning.component.html index 33d2c81..6285804 100644 --- a/src/app/pages/today-warning/today-warning.component.html +++ b/src/app/pages/today-warning/today-warning.component.html @@ -10,6 +10,7 @@ + @@ -17,9 +18,7 @@ - - - + @@ -55,10 +54,7 @@
    - +
    @@ -89,12 +85,8 @@
    - - - - +
    -
    + \ No newline at end of file diff --git a/src/app/pages/today-warning/today-warning.component.scss b/src/app/pages/today-warning/today-warning.component.scss index 37b12f2..f1e6667 100644 --- a/src/app/pages/today-warning/today-warning.component.scss +++ b/src/app/pages/today-warning/today-warning.component.scss @@ -46,24 +46,7 @@ } } - .warningnumber { - position: absolute; - left: 23px; - top: -60px; - - .num { - font-size: 50px; - text-shadow: 0px 0px 6px #8df; - color: white; - font-weight: 600; - } - - .today { - font-size: 18px; - font-family: titlefont; - color: #D0EAFF; - } - } + .listbox { flex: 1; diff --git a/src/app/pages/today-warning/today-warning.component.ts b/src/app/pages/today-warning/today-warning.component.ts index d61b579..08d17e0 100644 --- a/src/app/pages/today-warning/today-warning.component.ts +++ b/src/app/pages/today-warning/today-warning.component.ts @@ -1,5 +1,9 @@ -import { Component, OnInit } from '@angular/core'; +import { Component, OnInit, ViewContainerRef } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { HttpClient } from '@angular/common/http'; +import { TreeService } from 'src/app/service/tree.service'; +import { NzModalService } from 'ng-zorro-antd/modal'; +import { GetOutOfLineDetailsComponent } from './get-out-of-line-details/get-out-of-line-details.component'; @Component({ selector: 'app-today-warning', templateUrl: './today-warning.component.html', @@ -7,7 +11,7 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms'; }) export class TodayWarningComponent implements OnInit { validateForm!: FormGroup; - constructor(private fb: FormBuilder) { } + constructor(private http: HttpClient, private fb: FormBuilder, private toTree: TreeService, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } ngOnInit(): void { this.validateForm = this.fb.group({ @@ -16,8 +20,20 @@ export class TodayWarningComponent implements OnInit { site: [null], datePicker: [null] }); + this.yujingType() + //this.getAllOrganization() } + //预警类型接口 + yujingTypes: any //预警接口数据 + yujingType() { + this.http.get('/api/services/app/Violation/GetAllList').subscribe((data: any) => { + this.yujingTypes = data.result + } + ) + } + + submitForm(): void { for (const i in this.validateForm.controls) { this.validateForm.controls[i].markAsDirty(); @@ -36,30 +52,44 @@ export class TodayWarningComponent implements OnInit { } list: any = [ - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:2,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:3,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'}, - {level:1,type:'加油区违规',content:'工作人员倚靠加油机或者立柱',site:'加油区2号摄像头',time:'2021-10-12 09:28:13'} + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 2, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 3, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' }, + { level: 1, type: '加油区违规', content: '工作人员倚靠加油机或者立柱', site: '加油区2号摄像头', time: '2021-10-12 09:28:13' } ] - isVisible = false; + + + + + showModal(): void { - this.isVisible = true; - } - handleOk(): void { - console.log('Button ok clicked!'); - this.isVisible = false; - } - handleCancel(): void { - console.log('Button cancel clicked!'); - this.isVisible = false; + const modal = this.modal.create({ + nzContent: GetOutOfLineDetailsComponent, + nzViewContainerRef: this.viewContainerRef, + nzWidth: 1200, + nzBodyStyle: { + 'border': '1px solid #6d9cc7', + 'border-radius': '0px', + 'padding': '0px', + 'box-shadow': '0 0 8px 0 #fff', + 'background': '#000D21', + }, + nzComponentParams: {}, + nzFooter: null, + nzOnOk: async () => { + + } + }); + const instance = modal.getContentComponent(); } + } diff --git a/src/app/system-management/analysis-of-the-host/addhost/addhost.component.html b/src/app/system-management/analysis-of-the-host/addhost/addhost.component.html new file mode 100644 index 0000000..06d354d --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/addhost/addhost.component.html @@ -0,0 +1,11 @@ +
    +
    + + + + + + + +
    +
    \ No newline at end of file diff --git a/src/app/system-management/analysis-of-the-host/addhost/addhost.component.scss b/src/app/system-management/analysis-of-the-host/addhost/addhost.component.scss new file mode 100644 index 0000000..6f8c35d --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/addhost/addhost.component.scss @@ -0,0 +1,3 @@ +.ant-form-item{ + margin-bottom: 0; +} \ No newline at end of file diff --git a/src/app/system-management/analysis-of-the-host/addhost/addhost.component.ts b/src/app/system-management/analysis-of-the-host/addhost/addhost.component.ts new file mode 100644 index 0000000..73d5163 --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/addhost/addhost.component.ts @@ -0,0 +1,21 @@ +import { Component, OnInit, Input } from '@angular/core'; +import { NzModalRef } from 'ng-zorro-antd/modal'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import { HttpClient } from '@angular/common/http'; + +@Component({ + selector: 'app-addhost', + templateUrl: './addhost.component.html', + styleUrls: ['./addhost.component.scss'] +}) +export class AddhostComponent implements OnInit { + + validateForm!: FormGroup; + constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient) { } + + ngOnInit(): void { + this.validateForm = this.fb.group({ + ip: [null, [Validators.required]] + }); + } +} diff --git a/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.html b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.html new file mode 100644 index 0000000..776d383 --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.html @@ -0,0 +1,70 @@ +
    +
    +
    +
    + 组织机构列表 +
    +
    + + + +
    +
    +
    + 组织机构 +
    +
    + + + +
    + {{ node.title }} +
    +
    + + + + + + + + +
    + +
    +
    +
    +
    + 加油站分析主机列表 + (请从左侧选择加油站) + +
    +
    + +
    +
    +
    + +
    ip操作
    {{data.ip}} + 编辑 + 删除 +