profile-bind.component.d.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. import { AuthProfileService } from "../auth-profile.service";
  2. import Parse from "parse";
  3. import { Router } from "@angular/router";
  4. import { NzModalService } from "ng-zorro-antd/modal";
  5. import { NzMessageService } from "ng-zorro-antd/message";
  6. import { CrossService } from "../../../platform/cross.service";
  7. import * as i0 from "@angular/core";
  8. export declare class ProfileBindComponent {
  9. private authProfile;
  10. private router;
  11. private modal;
  12. private message;
  13. cross: CrossService;
  14. profile: Parse.Object;
  15. user: Parse.User;
  16. profileList: Array<Parse.Object>;
  17. pdata: any;
  18. now: Date;
  19. currentProfile: string;
  20. onResize(): void;
  21. constructor(authProfile: AuthProfileService, router: Router, modal: NzModalService, message: NzMessageService, cross: CrossService);
  22. loadProfiles(): Promise<void>;
  23. isVisible: boolean;
  24. bindProfile(p?: any): void;
  25. profileSearched: Parse.Object;
  26. searchProfile(): Promise<void>;
  27. selectProfile(p: any): void;
  28. goProfileManage(): void;
  29. onShowModal(): void;
  30. static ɵfac: i0.ɵɵFactoryDeclaration<ProfileBindComponent, never>;
  31. static ɵcmp: i0.ɵɵComponentDeclaration<ProfileBindComponent, "fm-profile-bind", never, {}, {}, never, never, false, never>;
  32. }