@ecip/application
Version:
26 lines (25 loc) • 982 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { _HttpClient, MenuService, ModalHelper } from '@delon/theme';
import { STColumn, STComponent } from '@delon/abc';
import { SFSchema } from '@delon/form';
import { NzMessageService } from 'ng-zorro-antd';
import { CacheService } from "@delon/cache";
import { DictService } from "@ecip/service";
import { Router } from "@angular/router";
export declare class ApplicationAppsComponent implements OnInit, OnDestroy {
private http;
private modal;
private msgSrv;
private cacheService;
dictService: DictService;
private menuSrv;
private router;
url: string;
searchSchema: SFSchema;
st: STComponent;
columns: STColumn[];
constructor(http: _HttpClient, modal: ModalHelper, msgSrv: NzMessageService, cacheService: CacheService, dictService: DictService, menuSrv: MenuService, router: Router);
ngOnDestroy(): void;
ngOnInit(): void;
add(): void;
}