xframelib
Version:
The accumulated front-end development foundation library originates from projects and serves projects.
36 lines (35 loc) • 638 B
TypeScript
export interface IExtraProperty {
title?: string;
footer?: string;
other?: number;
/**
* 其他扩展的Key属性
*/
[props: string]: any;
}
/**
* 用于显示对话框,传递参数数据
* 针对:ModalContainerWidget_LoadModal事件
*/
export interface IModalEventData {
/**
* 对话框ID
*/
modalID: string;
/**
* 对话框宽度,默认为500
*/
width?: number;
/**
* 标题参数
*/
extraData?: IExtraProperty;
/**
* 数据参数
*/
rowData?: any;
/**
* 其他扩展的Key属性
*/
[props: string]: any;
}