|
|
|
|
|
|
|
import { Router } from '@angular/router';
|
|
|
|
import { AddUnitComponent } from '../add-unit/add-unit.component';
|
|
|
|
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';
|
|
|
|
interface Person {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
integrity: number;
|
|
|
|
organization: string;
|
|
|
|
level: string;
|
|
|
|
nature:string;
|
|
|
|
time:string;
|
|
|
|
addr:string;
|
|
|
|
state:string
|
|
|
|
}
|
|
|
|
@Component({
|
|
|
|
selector: 'app-unit',
|
|
|
|
templateUrl: './unit.component.html',
|
|
|
|
styleUrls: ['./unit.component.scss']
|
|
|
|
})
|
|
|
|
export class UnitComponent implements OnInit {
|
|
|
|
checked=true
|
|
|
|
listOfData: Person[] = [
|
|
|
|
{
|
|
|
|
id: '1',
|
|
|
|
name: 'John Brown',
|
|
|
|
integrity: 20,
|
|
|
|
organization: 'New York No. 1 Lake Park',
|
|
|
|
level:'重点单位',
|
|
|
|
nature:'会议中心',
|
|
|
|
time:'time',
|
|
|
|
addr:'单位地址',
|
|
|
|
state:''
|
|
|
|
}
|
|
|
|
|
|
|
|
];
|
|
|
|
validateForm!: FormGroup;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
this.validateForm = this.fb.group({
|
|
|
|
level: [null],
|
|
|
|
type: [null],
|
|
|
|
event: [null],
|
|
|
|
area: [null],
|
|
|
|
disposalState: [null],
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
constructor(private router: Router,private fb: FormBuilder, private http: HttpClient, private toTree: TreeService, private modal: NzModalService, private message: NzMessageService, private viewContainerRef: ViewContainerRef) { }
|
|
|
|
|
|
|
|
searchValue = '';
|
|
|
|
next() {
|
|
|
|
this.router.navigate(['/basicInfo/unit/details']);
|
|
|
|
}
|
|
|
|
ngOnDestroy(): void {
|
|
|
|
console.log('删除了6666666666666')
|
|
|
|
// CustomReuseStrategy.deleteRouteSnapshot('/basicInfo/unit');
|
|
|
|
}
|
|
|
|
addOr(node?: any) {
|
|
|
|
console.log(node)
|
|
|
|
const modal = this.modal.create({
|
|
|
|
nzTitle: "新增单位",
|
|
|
|
nzContent: AddUnitComponent,
|
|
|
|
nzViewContainerRef: this.viewContainerRef,
|
|
|
|
nzWidth: 450,
|
|
|
|
nzComponentParams: {},
|
|
|
|
nzOnOk: async () => {
|
|
|
|
if (instance.validateForm.valid) {
|
|
|
|
console.log(1);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
this.message.create('warning', '请填写完整!');
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
const instance = modal.getContentComponent();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|