import { OnInit } from '@angular/core'; import { NzModalRef, NzMessageService } from 'ng-zorro-antd'; import { DynamicComponentEditFormService } from './service/dynamic-component-edit-form.service'; import { DynamicComponentEditFormGetMetaInfoCol } from './service/model/models'; export declare class LcEditFormComponent implements OnInit { private msg; private modal; private service; parentModel: any; parentId: any; model: any; id: string; /** * 窗体id */ windowFormId: string; /** * 编辑列 */ cols: DynamicComponentEditFormGetMetaInfoCol[]; constructor(msg: NzMessageService, modal: NzModalRef, service: DynamicComponentEditFormService); ngOnInit(): Promise; loadData(): void; saveOnClick(): void; private formartData; closeOnClick(): void; }