济南项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.4 KiB

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';
3 years ago
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
3 years ago
listOfData: Person[] = [
{
id: '1',
name: 'John Brown',
3 years ago
integrity: 20,
3 years ago
organization: 'New York No. 1 Lake Park',
level:'重点单位',
nature:'会议中心',
time:'time',
addr:'单位地址',
state:''
}
3 years ago
];
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) { }
3 years ago
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();
}
}