import { OnInit, AfterViewInit } from '@angular/core'; import { NzMessageService } from 'ng-zorro-antd'; import { ActivatedRoute } from "@angular/router"; import { DynamicComponentDetailFormService } from './service/dynamic-component-detail-from.service'; import { DynamicComponentDetailFormGetMetaInfoForm } from './service/model/dynamicComponentDetailFormGetMetaInfoForm'; import { DynamicComponentDetailFormGetMetaInfoTool } from './service/model/dynamicComponentDetailFormGetMetaInfoTool'; import { DynamicComponentDetailFormGetMetaInfoCol } from './service/model/dynamicComponentDetailFormGetMetaInfoCol'; export declare class LcDetailFormComponent implements OnInit, AfterViewInit { private msg; private route; private service; id: string; _windowFormId: string; set windowFormId(value: string); get windowFormId(): string; model: any; /** * 窗体信息 */ form: DynamicComponentDetailFormGetMetaInfoForm; /** * 工具栏信息 */ tools: DynamicComponentDetailFormGetMetaInfoTool[]; /** * 窗体列信息 */ cols?: DynamicComponentDetailFormGetMetaInfoCol[]; /** * 子窗体信息 */ tabForms: DynamicComponentDetailFormGetMetaInfoForm[]; constructor(msg: NzMessageService, route: ActivatedRoute, service: DynamicComponentDetailFormService); ngOnInit(): Promise; ngAfterViewInit(): void; loadData(): void; doColFormat(item: any, col: DynamicComponentDetailFormGetMetaInfoCol, index: number): any; visible: boolean; open(windowFormId: string, id: string): void; close(): void; }