刘向辉 3 years ago
parent
commit
0aa85062c9
  1. 5
      package-lock.json
  2. 1
      package.json
  3. 5
      src/app/pages/criminal-records-admin/criminal-records-admin.component.html
  4. 7
      src/app/pages/criminal-records-admin/criminal-records-admin.component.scss
  5. 57
      src/app/pages/criminal-records-admin/criminal-records-admin.component.ts
  6. 3
      src/app/pages/criminal-records/criminal-records.component.html
  7. 8
      src/app/pages/criminal-records/criminal-records.component.scss
  8. 5
      src/app/pages/criminal-records/criminal-records.component.ts
  9. 14
      src/app/pages/login/login.component.ts
  10. 9
      src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts
  11. 1
      src/app/system-management/navigation/navigation.component.html
  12. 9
      src/app/system-management/organization/organization.component.ts
  13. 1
      src/app/system-management/push/edit-push-item/edit-push-item.component.html
  14. 0
      src/app/system-management/push/edit-push-item/edit-push-item.component.scss
  15. 25
      src/app/system-management/push/edit-push-item/edit-push-item.component.spec.ts
  16. 15
      src/app/system-management/push/edit-push-item/edit-push-item.component.ts
  17. 46
      src/app/system-management/push/push.component.html
  18. 81
      src/app/system-management/push/push.component.scss
  19. 46
      src/app/system-management/push/push.component.ts
  20. 4
      src/app/system-management/system-management-routing.module.ts
  21. 4
      src/app/system-management/system-management.module.ts
  22. 9
      src/app/system-management/user/adduser/adduser.component.ts
  23. 9
      src/app/system-management/user/edituser/edituser.component.ts
  24. BIN
      src/assets/images/icon/push.png
  25. BIN
      src/assets/images/packup.png

5
package-lock.json generated

@ -9843,6 +9843,11 @@
}
}
},
"js-base64": {
"version": "3.7.2",
"resolved": "https://registry.npmmirror.com/js-base64/download/js-base64-3.7.2.tgz",
"integrity": "sha1-gW0R2BqK/yQWA9Gc5XYeE+Qdd0U="
},
"js-levenshtein": {
"version": "1.1.6",
"resolved": "https://registry.npm.taobao.org/js-levenshtein/download/js-levenshtein-1.1.6.tgz",

1
package.json

@ -40,6 +40,7 @@
"echarts": "^4.9.0",
"firebase": "^7.6.2",
"install": "^0.13.0",
"js-base64": "^3.7.2",
"linqjs": "^1.0.2",
"moment": "^2.29.1",
"ng-zorro-antd": "^9.3.0",

5
src/app/pages/criminal-records-admin/criminal-records-admin.component.html

@ -14,7 +14,7 @@
<nz-form-item class="searchParams">
<nz-form-control>
<nz-select id="type" formControlName="type" nzPlaceHolder="请选择预警类型">
<nz-select id="type" (ngModelChange)="typeChange($event)" formControlName="type" nzPlaceHolder="请选择预警类型">
<nz-option *ngFor="let item of warningTypes" [nzValue]="item.key" [nzLabel]="item.key"></nz-option>
</nz-select>
</nz-form-control>
@ -57,8 +57,9 @@
<div class="content">
<div class="title">
<app-title [name]="'预警类型统计'"></app-title>
<img (click)="isEchartsShow()" class="packup" src="../../../assets/images/packup.png" alt="">
</div>
<div class="chartsbox">
<div class="chartsbox" [hidden]="!isEcharts">
<div class="chart">
<div class="leftbox">
<span class="chartname">

7
src/app/pages/criminal-records-admin/criminal-records-admin.component.scss

@ -52,6 +52,13 @@
box-sizing: border-box;
padding: 0 28px;
margin: 13px 0;
position: relative;
.packup {
position: absolute;
right: 33px;
top: 16px;
cursor: pointer;
}
}
.chartsbox {

57
src/app/pages/criminal-records-admin/criminal-records-admin.component.ts

@ -255,24 +255,44 @@ export class CriminalRecordsAdminComponent implements OnInit {
showDetail: false,//即拖拽时候是否显示详细数值信息 默认true
realtime: true, //是否实时更新
filterMode: 'filter',
backgroundColor:'#001735',
width:'18'
backgroundColor: '#001735',
width: '18'
},
{
type:'inside',
yAxisIndex:0,
zoomOnMouseWheel:false, //滚轮是否触发缩放
moveOnMouseMove:true, //鼠标滚轮触发滚动
moveOnMouseWheel:true
type: 'inside',
yAxisIndex: 0,
zoomOnMouseWheel: false, //滚轮是否触发缩放
moveOnMouseMove: true, //鼠标滚轮触发滚动
moveOnMouseWheel: true
}
]
}
isEcharts: boolean = true
isEchartsShow() {
this.isEcharts = !this.isEcharts
}
startdate
enddate
ngOnInit(): void {
//当前日期
let myDate: any = new Date();
let nowY = myDate.getFullYear();
let nowM = myDate.getMonth() + 1;
let nowD = myDate.getDate();
this.enddate = nowY + "-" + (nowM < 10 ? "0" + nowM : nowM) + "-" + (nowD < 10 ? "0" + nowD : nowD);//当前日期
//获取三十天前日期
let lw = new Date(myDate - 1000 * 60 * 60 * 24 * 30);//最后一个数字30可改,30天的意思
let lastY = lw.getFullYear();
let lastM = lw.getMonth() + 1;
let lastD = lw.getDate();
this.startdate = lastY + "-" + (lastM < 10 ? "0" + lastM : lastM) + "-" + (lastD < 10 ? "0" + lastD : lastD);//三十天之前日期
this.validateForm = this.fb.group({
level: [null],
type: [null],
site: [null],
datePicker: [null]
datePicker: [[this.startdate, this.enddate]]
});
//饼图
@ -332,6 +352,15 @@ export class CriminalRecordsAdminComponent implements OnInit {
this.validateForm.controls[i].markAsDirty();
this.validateForm.controls[i].updateValueAndValidity();
}
console.log(this.validateForm.value)
let ViolationIds = []
if (this.validateForm.value.type) {
this.warningTypesDetails.forEach(item => {
item.id ? ViolationIds.push(item.id) : null
});
}
}
resetForm(e: MouseEvent): void {
e.preventDefault();
@ -351,6 +380,18 @@ export class CriminalRecordsAdminComponent implements OnInit {
this.warningTypes = (data.result as any).groupBy((t) => { return t.violationType });
})
}
typeChange(e) {
this.warningTypes.forEach(element => {
if (element.key == e) {
this.warningTypesDetails = element
}
});
this.validateForm.patchValue({
event: null,
});
}
list: any = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
look() {
this.router.navigate(['/records/petrolStation'])

3
src/app/pages/criminal-records/criminal-records.component.html

@ -57,8 +57,9 @@
<div class="content">
<div class="title">
<app-title [name]="'预警类型统计'"></app-title>
<img (click)="isEchartsShow()" class="packup" src="../../../assets/images/packup.png" alt="">
</div>
<div class="chartsbox">
<div class="chartsbox" [hidden]="!isEcharts">
<div class="chart">
<div class="leftbox">
<span class="chartname">

8
src/app/pages/criminal-records/criminal-records.component.scss

@ -52,6 +52,14 @@
height: 64px;
box-sizing: border-box;
padding: 0 28px;
position: relative;
.packup {
position: absolute;
right: 33px;
top: 16px;
cursor: pointer;
}
}
.chartsbox {

5
src/app/pages/criminal-records/criminal-records.component.ts

@ -272,6 +272,11 @@ export class CriminalRecordsComponent implements OnInit {
}
return dateList;
}
isEcharts:boolean = true
isEchartsShow(){
this.isEcharts = !this.isEcharts
}
ngOnInit(): void {
this.validateForm = this.fb.group({
level: [null],

14
src/app/pages/login/login.component.ts

@ -5,7 +5,7 @@ import { CacheTokenService } from '../../service/cache-token.service'//引入服
import { CookieService } from 'ngx-cookie-service';//cookie插件
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { NzMessageService } from 'ng-zorro-antd/message';
import { Base64 } from 'js-base64';
@Component({
selector: 'app-login',
templateUrl: './login.component.html',
@ -30,8 +30,8 @@ export class LoginComponent implements OnInit {
let password = localStorage.getItem('password')
if (account && password) {
this.validateForm.patchValue({
userName: localStorage.getItem('account'),
password: localStorage.getItem('password')
userName: Base64.decode(localStorage.getItem('account')),
password: Base64.decode(localStorage.getItem('password'))
});
this.remember = true //这一步是回显后让勾选框为选中状态
}
@ -40,7 +40,7 @@ export class LoginComponent implements OnInit {
this.submitForm()
this.autologin = true //这一步是回显后让勾选框为选中状态
}
}
errmsg: string = ''; //错误信息
@ -57,8 +57,8 @@ export class LoginComponent implements OnInit {
rememberInfo() {
// 判断用户是否勾选记住密码,如果勾选,在本地储存中储存登录信息
if (this.remember) {
localStorage.setItem("account", this.validateForm.value.userName)
localStorage.setItem("password", this.validateForm.value.password)
localStorage.setItem("account", Base64.encode(this.validateForm.value.userName))
localStorage.setItem("password", Base64.encode(this.validateForm.value.password))
}
}
//自动登陆
@ -80,7 +80,7 @@ export class LoginComponent implements OnInit {
localStorage.removeItem("account")
localStorage.removeItem("password")
}
if(!this.autologin){
if (!this.autologin) {
localStorage.removeItem("isautologin")
}

9
src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts

@ -26,7 +26,14 @@ export class AnalysisOfTheHostComponent implements OnInit {
nzExpandAll = false;
totalCount: string
getAllOrganization() {
this.http.get('/api/services/app/Organization/GetAll').subscribe((data: any) => {
let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id
let params = {
OrganizationUnitId: OrganizationUnitId,
IsContainsChildren: "true"
}
this.http.get('/api/services/app/Organization/GetAll', {
params: params
}).subscribe((data: any) => {
this.totalCount = data.result.totalCount
data.result.items.forEach(element => {
element.key = element.id

1
src/app/system-management/navigation/navigation.component.html

@ -17,6 +17,7 @@
<li [routerLink]="['/system/user']" routerLinkActive="router-link-active"><img src="../../../assets/images/icon/user.png" alt="">用户管理</li>
<li [routerLink]="['/system/role']" routerLinkActive="router-link-active"><img src="../../../assets/images/icon/role.png" alt="">角色管理</li>
<li [routerLink]="['/system/host']" routerLinkActive="router-link-active"><img src="../../../assets/images/icon/host.png" alt="">分析主机管理</li>
<li [routerLink]="['/system/push']" routerLinkActive="router-link-active"><img src="../../../assets/images/icon/push.png" alt="">推送管理</li>
</ul>
</div>
</nz-sider>

9
src/app/system-management/organization/organization.component.ts

@ -36,7 +36,14 @@ export class OrganizationComponent implements OnInit {
nzExpandAll = false;
totalCount: string
getAllOrganization() {
this.http.get('/api/services/app/Organization/GetAll').subscribe((data: any) => {
let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id
let params = {
OrganizationUnitId: OrganizationUnitId,
IsContainsChildren: "true"
}
this.http.get('/api/services/app/Organization/GetAll', {
params: params
}).subscribe((data: any) => {
this.totalCount = data.result.totalCount
// console.log('组织机构',data.result.totalCount)
data.result.items.forEach(element => {

1
src/app/system-management/push/edit-push-item/edit-push-item.component.html

@ -0,0 +1 @@
<p>edit-push-item works!</p>

0
src/app/system-management/push/edit-push-item/edit-push-item.component.scss

25
src/app/system-management/push/edit-push-item/edit-push-item.component.spec.ts

@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { EditPushItemComponent } from './edit-push-item.component';
describe('EditPushItemComponent', () => {
let component: EditPushItemComponent;
let fixture: ComponentFixture<EditPushItemComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ EditPushItemComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(EditPushItemComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

15
src/app/system-management/push/edit-push-item/edit-push-item.component.ts

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-edit-push-item',
templateUrl: './edit-push-item.component.html',
styleUrls: ['./edit-push-item.component.scss']
})
export class EditPushItemComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}

46
src/app/system-management/push/push.component.html

@ -0,0 +1,46 @@
<div class="pushbox" id="pushbox">
<div class="topbox">
<div class="lefttop">
<span>通知推送权限配置</span>
</div>
<div class="righttop">
<form nz-form [formGroup]="validateForm" (ngSubmit)="submitForm()">
<nz-form-item>
<nz-form-control>
<nz-input-group nzPrefixIcon="search">
<input type="text" nz-input placeholder="请输入预案类别" formControlName="search" />
</nz-input-group>
</nz-form-control>
<button style="display: none;" type="submit"></button>
</nz-form-item>
</form>
<!-- <button nz-button nzType="primary"><i nz-icon nzType="plus-circle" nzTheme="outline"></i>新增</button> -->
</div>
</div>
<div class="tablebox">
<table>
<tr>
<th style="width: 20%;">预警类别</th>
<th style="width: 20%;">预警/分析事件</th>
<th style="width: 25%;">预警推送范围</th>
<th style="width: 25%;">预警处置范围</th>
<th style="width: 10%;">操作</th>
</tr>
<tr *ngFor="let item of list">
<td>{{item.violationType}}</td>
<td>{{item.violationName}}</td>
<td>3</td>
<td>4</td>
<td>
<span style="color: #2399FF;cursor: pointer;" (click)="edititem(item)">编辑</span>
</td>
</tr>
</table>
</div>
<!-- <div class="pagination">
<nz-pagination [nzHideOnSinglePage]="false" [nzPageIndex]="1" [nzTotal]="usersNum" [nzPageSize]="16"
[nzShowTotal]="totalTemplate" nzShowQuickJumper (nzPageIndexChange)="pageChange($event)">
</nz-pagination>
<ng-template #totalTemplate let-total> 16条/页,共{{usersNum}}条 </ng-template>
</div> -->
</div>

81
src/app/system-management/push/push.component.scss

@ -0,0 +1,81 @@
.pushbox {
width: 100%;
height: 100%;
background: #FFFFFF;
box-sizing: border-box;
padding: 20px;
overflow: hidden;
display: flex;
flex-direction: column;
}
.topbox {
width: 100%;
height: 36px;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
.lefttop {
span:nth-child(1) {
color: #000D21;
margin-right: 16px;
}
span:nth-child(2) {
color: rgba(36, 36, 36, 0.24);
}
}
.righttop {
display: flex;
button {
margin-left: 16px;
}
nz-input-group {
height: 32px;
}
}
}
.tablebox {
flex: 1;
overflow-y: auto;
//滚动条样式
::-webkit-scrollbar {
display: none;
}
table{
width: 100%;
tr{
height: 40px;
line-height: 40px;
font-size: 14px;
}
tr:nth-child(1) th{
font-weight: 600;
font-size: 15px;
}
tr,tr th,td{
border: 0px;
color: #000D21;
font-family: synormal;
font-weight: 400;
}
tr:nth-child(odd) {
background-color:rgba(145, 204, 255, 0.16);
}
tr:nth-child(even) {
background-color:#fff;
}
tr th:nth-child(1),td:nth-child(1){
box-sizing: border-box;
padding-left: 5%;
}
}
}

46
src/app/system-management/push/push.component.ts

@ -0,0 +1,46 @@
import { HttpClient } from '@angular/common/http';
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
@Component({
selector: 'app-push',
templateUrl: './push.component.html',
styleUrls: ['./push.component.scss']
})
export class PushComponent implements OnInit {
validateForm!: FormGroup;
constructor(private fb: FormBuilder, private http: HttpClient) { }
ngOnInit(): void {
this.validateForm = this.fb.group({
search: [null]
});
this.getViolation()
}
//获取预警类型
list:any
getViolation() {
this.http.get('/api/services/app/Violation/GetAllList').subscribe((data:any) => {
this.list = data.result
console.log('预警类型', data)
})
}
edititem(item){
}
//搜索框提交
submitForm(): void {
for (const i in this.validateForm.controls) {
this.validateForm.controls[i].markAsDirty();
this.validateForm.controls[i].updateValueAndValidity();
}
}
}

4
src/app/system-management/system-management-routing.module.ts

@ -6,12 +6,14 @@ 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';
import { PushComponent } from './push/push.component';
const routes: Routes = [
{ path: 'organization', component: OrganizationComponent },
{ path: 'user', component: UserComponent },
{ path: 'role', component: RoleComponent },
{ path: 'host', component: AnalysisOfTheHostComponent }
{ path: 'host', component: AnalysisOfTheHostComponent },
{ path: 'push', component: PushComponent }
];
@NgModule({

4
src/app/system-management/system-management.module.ts

@ -32,8 +32,10 @@ import { AddhostComponent } from './analysis-of-the-host/addhost/addhost.compone
import { EdithostComponent } from './analysis-of-the-host/edithost/edithost.component';
import { AddcameraComponent } from './analysis-of-the-host/addcamera/addcamera.component';
import { EditcameraComponent } from './analysis-of-the-host/editcamera/editcamera.component';
import { PushComponent } from './push/push.component';
import { EditPushItemComponent } from './push/edit-push-item/edit-push-item.component';
@NgModule({
declarations: [OrganizationComponent, UserComponent, RoleComponent, NavigationComponent, AdduserComponent, EdituserComponent, AddroleComponent, EditroleComponent, AddorComponent, EditorComponent, AnalysisOfTheHostComponent, AddhostComponent, EdithostComponent, AddcameraComponent, EditcameraComponent],
declarations: [OrganizationComponent, UserComponent, RoleComponent, NavigationComponent, AdduserComponent, EdituserComponent, AddroleComponent, EditroleComponent, AddorComponent, EditorComponent, AnalysisOfTheHostComponent, AddhostComponent, EdithostComponent, AddcameraComponent, EditcameraComponent, PushComponent, EditPushItemComponent],
imports: [
CommonModule,
SystemRoutingModule,

9
src/app/system-management/user/adduser/adduser.component.ts

@ -43,7 +43,14 @@ export class AdduserComponent implements OnInit {
//获取所有组织机构
nodes:any = []
getAllOrganization() {
this.http.get('/api/services/app/Organization/GetAll').subscribe((data: any) => {
let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id
let params = {
OrganizationUnitId: OrganizationUnitId,
IsContainsChildren: "true"
}
this.http.get('/api/services/app/Organization/GetAll', {
params: params
}).subscribe((data: any) => {
data.result.items.forEach(element => {
element.key = element.id
element.title = element.displayName

9
src/app/system-management/user/edituser/edituser.component.ts

@ -45,7 +45,14 @@ export class EdituserComponent implements OnInit {
//获取所有组织机构
nodes:any = []
getAllOrganization() {
this.http.get('/api/services/app/Organization/GetAll').subscribe((data: any) => {
let OrganizationUnitId = sessionStorage.getItem('isGasStation') == 'true' ? JSON.parse(sessionStorage.getItem('userdataOfgasstation')).organization.id : JSON.parse(sessionStorage.getItem('userdata')).organization.id
let params = {
OrganizationUnitId: OrganizationUnitId,
IsContainsChildren: "true"
}
this.http.get('/api/services/app/Organization/GetAll', {
params: params
}).subscribe((data: any) => {
data.result.items.forEach(element => {
element.key = element.id
element.title = element.displayName

BIN
src/assets/images/icon/push.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 441 B

BIN
src/assets/images/packup.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Loading…
Cancel
Save