view-loading-service.ts 383 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import { LoadingServiceBase } from "./loading-service-base";


/**
 * 视图加载服务
 *
 * @export
 * @class ViewLoadingService
 * @extends {LoadingServiceBase}
 */
export class ViewLoadingService extends LoadingServiceBase {
    /**
     * 主视图sessionid
     *
     * @type {string[]}
     * @memberof ViewLoadingService
     */
     public srfsessionid: string = '';    
}