UNPKG

@wjya/ngx-webapp-icpc.group.pms

Version:

angular webapp : icpc.group.pms

31 lines (30 loc) 1.21 kB
import { OnInit, Injector } from '@angular/core'; import { UserStorageService } from '@wjya/ngx-webapp-fx'; import { DataSourceHelper } from '../../service/data-source.helper'; import { NzModalService } from 'ng-zorro-antd'; import { PostDialogComponent } from './post-dialog.component'; import { PostAuthorityComponent } from './post-authority.component'; export declare class PostComponent implements OnInit { private dataSourceHelper; private userStorageService; private injector; private confirmServ; postDialog: PostDialogComponent; authorityDialog: PostAuthorityComponent; private listView; private dataSource; treeViewData: any; private communityGroupId; postId: number; constructor(dataSourceHelper: DataSourceHelper, userStorageService: UserStorageService, injector: Injector, confirmServ: NzModalService); ngOnInit(): void; loadAll(): void; insert(): void; dialog(dataRow: any): void; delete(dataRow: any): void; onSave(entity: any): void; setPostAuthority(): void; search(query: any): void; formateEmployeeNames(employeeNames: any): any; dialogAuthority(dataRow: any): void; }