import { OnInit } from '@angular/core'; import { DialogService } from '../../services/dialog.service'; import { _HttpClient } from '@delon/theme'; import { NzModalRef } from 'ng-zorro-antd'; export declare class IccPatchDialogComponent implements OnInit { private dialogService; http: _HttpClient; private modal; constructor(dialogService: DialogService, http: _HttpClient, modal: NzModalRef); existPatch: string; subject: string; mediaUrl: string; groupUrl: any; itemUrl: any; content: any; patchGroups: any[]; patchTypes: any[]; canSelectPatchTypes: any[]; patchItems: any[]; patchGroupDto: { id: string; type: number; }; msgType: any; contentType: any; patchStrategy: { groupId: any; groupName: any; varName: any; method: any; type: any; itemId: any; itemName: any; weightParam: {}; }; ngOnInit(): void; searchPatchGroup(event: any): void; changePatchGroupMethod(event: any): void; selectPatchType(event: any): void; destroy(): void; confirm(): void; checkPatchData(): void; /** * 根据消息类型类型获取贴片 * @param msgType */ getPatchGroupsByMsgType(msgType: number, contentType: number): void; /** * 获取贴片组的贴片类型 */ getPatchTypes(): void; selectPatchTypeClick(): void; /** * 选择贴片项 */ getPatchItemByGroupIdAndType($event?: any): void; selectPatchItemChange(value: any, obj: any): void; }