@wjya/ngx-webapp-icpc.group.pms
Version:
angular webapp : icpc.group.pms
29 lines (28 loc) • 1.09 kB
TypeScript
import { UserStorageService } from '@wjya/ngx-webapp-fx';
import { OnInit, EventEmitter } from '@angular/core';
import { DataSourceHelper } from '../../../service/data-source.helper';
import { NzModalService } from 'ng-zorro-antd';
export declare class CommunityListComponent implements OnInit {
private dataSourceHelper;
private userStorageService;
private confirmServ;
reload: EventEmitter<any>;
private dataSource;
private officalCommunitiesDataSource;
modalIsVisible: boolean;
data: any[];
name: string;
private communityGroupId;
communityOptions: any[];
isInsert: boolean;
selectedOption: any;
private officalId;
constructor(dataSourceHelper: DataSourceHelper, userStorageService: UserStorageService, confirmServ: NzModalService);
ngOnInit(): void;
getCommunityList(bindCommunities: any, dataRow: any): void;
loadAll(communities: any): void;
doesJudgmentExist(communities: any): void;
handleCancel(): void;
onSave(): void;
removeCommunity(communityId: any): void;
}