|
|
|
@ -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 { |
|
|
|
|