diff --git a/src/app/pages/home/home.component.html b/src/app/pages/home/home.component.html index 9fdcc3c..78973af 100644 --- a/src/app/pages/home/home.component.html +++ b/src/app/pages/home/home.component.html @@ -3,13 +3,13 @@
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..f8a37a6 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,30 @@ import { Component, OnInit } from '@angular/core'; }) export class HomeComponent implements OnInit { - constructor() { } + constructor(private router: Router) { } + isGasStation: boolean + isWarning: boolean = false//是否是今日预警页面 ngOnInit(): void { + 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/login/login.component.ts b/src/app/pages/login/login.component.ts index 1dcb046..9b63de3 100644 --- a/src/app/pages/login/login.component.ts +++ b/src/app/pages/login/login.component.ts @@ -61,7 +61,13 @@ export class LoginComponent implements OnInit { sessionStorage.setItem('userdata', JSON.stringify(data.result.user)) this.isLoading = false; this.message.create('success', `登陆成功`); - this.router.navigate(['/plan']) + if(data.result.user.organization.isGasStation){ + sessionStorage.setItem("isGasStation", 'true'); + this.router.navigate(['/plan/petrolStation']) + }else{ + sessionStorage.setItem("isGasStation", 'false'); + this.router.navigate(['/plan']) + } }) //调用服务中的function刷新token diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index 7d7a713..17142f1 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -40,13 +40,14 @@ import { AddequipmentComponent } from './equipment-info/addequipment/addequipmen 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,PlanAdminComponent], + AddequipmentComponent, EditequipmentComponent,PlanAdminComponent, GetOutOfLineDetailsComponent], imports: [ @@ -80,7 +81,7 @@ import { PlanAdminComponent } from './plan-admin/plan-admin.component'; NzCollapseModule ], - entryComponents: [AddequipmentComponent, EditequipmentComponent], + entryComponents: [AddequipmentComponent, EditequipmentComponent,GetOutOfLineDetailsComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] }) diff --git a/src/app/pages/plan-admin/plan-admin.component.scss b/src/app/pages/plan-admin/plan-admin.component.scss index faf9468..00604e8 100644 --- a/src/app/pages/plan-admin/plan-admin.component.scss +++ b/src/app/pages/plan-admin/plan-admin.component.scss @@ -26,7 +26,8 @@ margin-top: 12px; box-sizing: border-box; padding: 18px 12px; - nz-tree{ + + nz-tree { background: none; color: #C4E2FC; } @@ -107,6 +108,9 @@ div { color: #91CCFF; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; .look { color: #36A2FF; 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 dd0b68d..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 @@ -146,7 +146,7 @@
- +
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 942eadb..6285804 100644 --- a/src/app/pages/today-warning/today-warning.component.html +++ b/src/app/pages/today-warning/today-warning.component.html @@ -54,10 +54,7 @@ - +
@@ -88,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 a6ff501..08d17e0 100644 --- a/src/app/pages/today-warning/today-warning.component.ts +++ b/src/app/pages/today-warning/today-warning.component.ts @@ -1,7 +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', @@ -9,7 +11,7 @@ import { TreeService } from 'src/app/service/tree.service'; }) export class TodayWarningComponent implements OnInit { validateForm!: FormGroup; - constructor(private http: HttpClient,private fb: FormBuilder, private toTree: TreeService) { } + constructor(private http: HttpClient, private fb: FormBuilder, private toTree: TreeService, private modal: NzModalService, private viewContainerRef: ViewContainerRef) { } ngOnInit(): void { this.validateForm = this.fb.group({ @@ -23,14 +25,14 @@ export class TodayWarningComponent implements OnInit { } //预警类型接口 - yujingTypes:any //预警接口数据 - yujingType(){ + yujingTypes: any //预警接口数据 + yujingType() { this.http.get('/api/services/app/Violation/GetAllList').subscribe((data: any) => { - this.yujingTypes=data.result - } + this.yujingTypes = data.result + } ) } - + submitForm(): void { for (const i in this.validateForm.controls) { @@ -50,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/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..a121a4c --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.html @@ -0,0 +1 @@ +

analysis-of-the-host works!

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..e69de29 diff --git a/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.spec.ts b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.spec.ts new file mode 100644 index 0000000..9b06ebc --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AnalysisOfTheHostComponent } from './analysis-of-the-host.component'; + +describe('AnalysisOfTheHostComponent', () => { + let component: AnalysisOfTheHostComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ AnalysisOfTheHostComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AnalysisOfTheHostComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); 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..d0d5474 --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@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() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/system-management/navigation/navigation.component.html b/src/app/system-management/navigation/navigation.component.html index 3ab03ce..429fa75 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..e49b004 100644 --- a/src/app/system-management/system-management.module.ts +++ b/src/app/system-management/system-management.module.ts @@ -27,8 +27,9 @@ 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'; @NgModule({ - declarations: [OrganizationComponent, UserComponent, RoleComponent, NavigationComponent, AdduserComponent, EdituserComponent, AddroleComponent, EditroleComponent, AddorComponent, EditorComponent], + declarations: [OrganizationComponent, UserComponent, RoleComponent, NavigationComponent, AdduserComponent, EdituserComponent, AddroleComponent, EditroleComponent, AddorComponent, EditorComponent, AnalysisOfTheHostComponent], imports: [ CommonModule, SystemRoutingModule, 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/theme.less b/src/theme.less index 0343397..871eb3a 100644 --- a/src/theme.less +++ b/src/theme.less @@ -274,5 +274,20 @@ } .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