hlyc-web-pack 2.8.8 → 2.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,6 +23,7 @@ export interface LayoutTableModalPropType {
23
23
  title: React.ReactNode;
24
24
  /** 弹窗宽度 */
25
25
  width?: number;
26
+ /** 头部渲染额外元素 */
26
27
  topExtra?: React.ReactNode;
27
28
  /** 搜索表单数据 */
28
29
  searchFormList?: FormListType[];
@@ -49,6 +50,8 @@ export interface LayoutTableModalPropType {
49
50
  manualParameterChange?: (params: AnyObjectType) => AnyObjectType;
50
51
  /** 静态表格数据 */
51
52
  data?: AnyObjectType[];
53
+ /** 数据调用成功回调 */
54
+ getTableSuccessData?: (data: AnyObjectType) => void;
52
55
  /** 关闭弹窗回调 */
53
56
  onCancel?: () => void;
54
57
  /** 确定弹窗回调 */