hlyc-web-pack 3.6.46 → 3.6.48

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.
@@ -77,6 +77,8 @@ export interface GenerateTableProp {
77
77
  paginationConfig?: false | TablePaginationConfig;
78
78
  /** 选择框的默认属性配置 */
79
79
  getCheckboxProps?: (record: AnyObjectType) => AnyObjectType;
80
+ /** 数据结果过滤 */
81
+ resultFilter?: (data: any) => Promise<AnyObjectType[]> | AnyObjectType[];
80
82
  /** 数据调用成功回调 */
81
83
  getTableSuccessData?: (data: AnyObjectType) => void;
82
84
  };