From ace5bc247ebfe67116ff9765794480bffa7f437a Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Tue, 16 Nov 2021 15:24:34 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E5=8A=A0=E6=B2=B9=E7=AB=99?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E6=8C=89=E9=92=AE=EF=BC=8C=E4=BB=8A=E6=97=A5?= =?UTF-8?q?=E9=A2=84=E8=AD=A6=E6=95=B0=E5=AD=97=E5=92=8C=E5=BC=B9=E5=87=BA?= =?UTF-8?q?=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/pages/home/home.component.html | 14 +++- src/app/pages/home/home.component.scss | 45 +++++++++++ src/app/pages/home/home.component.ts | 27 ++++++- src/app/pages/login/login.component.ts | 8 +- src/app/pages/pages.module.ts | 5 +- .../plan-admin/plan-admin.component.scss | 6 +- .../today-warning-admin.component.html | 2 +- .../get-out-of-line-details.component.html | 23 ++++++ .../get-out-of-line-details.component.scss | 61 +++++++++++++++ .../get-out-of-line-details.component.ts | 20 +++++ .../today-warning.component.html | 13 +-- .../today-warning.component.scss | 19 +---- .../today-warning/today-warning.component.ts | 74 +++++++++++------- .../analysis-of-the-host.component.html | 1 + .../analysis-of-the-host.component.scss | 0 .../analysis-of-the-host.component.spec.ts | 25 ++++++ .../analysis-of-the-host.component.ts | 15 ++++ .../navigation/navigation.component.html | 1 + .../navigation/navigation.component.ts | 4 +- .../system-management-routing.module.ts | 4 +- .../system-management.module.ts | 3 +- src/assets/images/warningnum.png | Bin 0 -> 8607 bytes src/theme.less | 15 ++++ 23 files changed, 313 insertions(+), 72 deletions(-) create mode 100644 src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.html create mode 100644 src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.scss create mode 100644 src/app/pages/today-warning/get-out-of-line-details/get-out-of-line-details.component.ts create mode 100644 src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.html create mode 100644 src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.scss create mode 100644 src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.spec.ts create mode 100644 src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts create mode 100644 src/assets/images/warningnum.png 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 0000000000000000000000000000000000000000..a312904f6362750bdff1cbb595e6d05ab8619770 GIT binary patch literal 8607 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