UNPKG

@ecip/system

Version:
28 lines (27 loc) 1.01 kB
import { OnInit } from '@angular/core'; import { NzModalRef, NzMessageService } from 'ng-zorro-antd'; import { FormBuilder, FormControl, FormGroup } from "@angular/forms"; import { Observable } from "rxjs/index"; import { DictService } from "@ecip/service"; import { CacheService } from "@delon/cache"; export declare class SystemDictEditComponent implements OnInit { private modal; msgSrv: NzMessageService; private fb; dictService: DictService; private cacheService; record: any; i: any; isRoot: boolean; form: FormGroup; parent: any; ableOperate: boolean; stateList: Observable<{}>; constructor(modal: NzModalRef, msgSrv: NzMessageService, fb: FormBuilder, dictService: DictService, cacheService: CacheService); ngOnInit(): void; compareNumStr(c1: any, c2: any): boolean; codeAsyncValidator: (control: FormControl) => any; typeAsyncValidator: (control: FormControl) => any; submit(): void; close(): void; }