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.
|
|
|
import { Component, OnInit, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
|
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
|
|
|
import { NzFormatEmitEvent, NzTreeComponent, NzTreeNodeOptions } from 'ng-zorro-antd/tree';
|
|
|
|
import { NzModalService } from 'ng-zorro-antd/modal';
|
|
|
|
import { NzMessageService } from 'ng-zorro-antd/message';
|
|
|
|
import { HttpClient } from '@angular/common/http';
|
|
|
|
import { TreeService } from 'src/app/service/tree.service';
|
|
|
|
@Component({
|
|
|
|
selector: 'app-station-weekly-plan',
|
|
|
|
templateUrl: './station-weekly-plan.component.html',
|
|
|
|
styleUrls: ['./station-weekly-plan.component.scss']
|
|
|
|
})
|
|
|
|
export class StationWeeklyPlanComponent implements OnInit {
|
|
|
|
|
|
|
|
validateForm!: FormGroup;
|
|
|
|
constructor(private fb: FormBuilder, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient, private toTree: TreeService) { }
|
|
|
|
searchForm = {
|
|
|
|
taskname: '',
|
|
|
|
tasktime: '',
|
|
|
|
unitname: '',
|
|
|
|
unitlevel: '',
|
|
|
|
or: ''
|
|
|
|
}
|
|
|
|
usersNum
|
|
|
|
loading
|
|
|
|
usersLIst = [1]
|
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
pageChange($event) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
cancel(item, type) {
|
|
|
|
|
|
|
|
}
|
|
|
|
delete(item) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|