@gx-design-vue/pro-table 0.2.0-beta.31 → 0.2.0-beta.33
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.
- package/dist/ProTable.d.ts +42 -7
- package/dist/hooks/useFetchData.d.ts +2 -1
- package/dist/hooks/useTable.d.ts +3 -2
- package/dist/hooks/useTableForm.d.ts +3 -2
- package/dist/pro-table.mjs +5343 -5336
- package/dist/pro-table.umd.js +34 -34
- package/dist/types/TableTypings.d.ts +4 -2
- package/package.json +1 -1
|
@@ -65,8 +65,10 @@ export interface ProCoreActionType {
|
|
|
65
65
|
reload?: (info?: ProTabelFeachParams) => void;
|
|
66
66
|
/** @name 刷新并清空表单,重置为第一页 */
|
|
67
67
|
reloadAndRest?: (callBack?: () => void) => void;
|
|
68
|
-
/** @name
|
|
69
|
-
|
|
68
|
+
/** @name 设置翻页*/
|
|
69
|
+
setPagination?: (pagination: ProTablePaginationConfig) => void;
|
|
70
|
+
/** @name 设置翻页、排序、筛选、并且reload */
|
|
71
|
+
setPageAndReload?: (pagination: ProTablePaginationConfig, filters?: any, sorter?: any) => void;
|
|
70
72
|
/** @name 更新TableData属性值 */
|
|
71
73
|
reSetDataList?: (data: RecordType[]) => void;
|
|
72
74
|
/** @name 更新TableData属性值 */
|