/** * 界面处理逻辑上下文参数对象 * * @export * @class UIActionContext */ export declare class UIActionContext { /** * 应用上下文 * * @type {IContext} * @memberof UIActionContext */ private appContext; /** * 视图参数 * * @type {IParams} * @memberof UIActionContext */ private viewParam; /** * 数据对象 * * @type {*} * @memberof UIActionContext */ data: any; /** * 其他附加参数 * * @type {*} * @memberof UIActionContext */ otherParams: any; /** * 逻辑处理参数集合 * * @type {Map} * @memberof UIActionContext */ paramsMap: Map; /** * 默认逻辑处理参数名称 * * @type {string} * @memberof UIActionContext */ defaultParamName: string; /** * 逻辑局部应用上下文参数名称 * * @type {string} * @memberof UIActionContext */ navContextParamName: string; /** * 逻辑局部视图参数名称 * * @type {string} * @memberof UIActionContext */ navViewParamParamName: string; /** * 默认逻辑处理参数 * * @readonly * @memberof UIActionContext */ get defaultParam(): any; /** * 逻辑上下文参数 * * @readonly * @memberof UIActionContext */ get navContextParam(): any; /** * 逻辑视图参数 * * @readonly * @memberof UIActionContext */ get navViewParamParam(): any; /** * 上下文数据(包括应用上下文和逻辑局部上下文参数) * * @readonly * @memberof UIActionContext */ get context(): any; /** * 视图参数数据(包括外部传入视图参数和逻辑局部视图参数) * * @readonly * @memberof UIActionContext */ get viewparams(): any; /** * 获取逻辑处理参数 * * @param {string} key 逻辑处理参数的codeName * @memberof UIActionContext */ getParam(key: string): any; /** * 构造函数 * * @param {*} logic 处理逻辑模型对象 * @param {any[]} args 数据对象 * @param {*} context 应用上下文 * @param {*} params 视图参数 * @param {*} $event 事件源对象 * @param {*} xData 部件对象 * @param {*} actioncontext 界面容器对象 * @param {*} srfParentDeName 关联父应用实体代码名称 * @memberof UIActionContext */ constructor(logic: any, args: any[], context?: any, params?: any, $event?: any, xData?: any, actioncontext?: any, srfParentDeName?: string); } //# sourceMappingURL=uiaction-context.d.ts.map