@lx-frontend/wrap-element-ui 1.0.7-beta.0 → 1.0.7-beta.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lx-frontend/wrap-element-ui",
3
- "version": "1.0.7-beta.0",
3
+ "version": "1.0.7-beta.1",
4
4
  "description": "wrap-element-ui",
5
5
  "author": "",
6
6
  "main": "src/components/index.ts",
@@ -151,7 +151,10 @@ export function useColumnHeaderOperation({ props, tableDomRef, sortFilterPopover
151
151
  if (params[key] === undefined) delete params[key]
152
152
  })
153
153
 
154
- emit('search', params);
154
+ emit('search', {
155
+ ...params,
156
+ page: 1
157
+ });
155
158
  };
156
159
 
157
160
  const handleHeaderOperationConfirm = async (column: IColumnConfig, scope) => {
@@ -28,4 +28,4 @@ export function usePagination({ emit, beforePageChange }: IParams) {
28
28
  handlePageSizeChange,
29
29
  handleCurrPageChange,
30
30
  }
31
- }
31
+ }