Browse Source

fix: when VxeTable toolbarConfig.refresh is enabled, it will carry incorrect parameters (#4980)

pull/4990/head
LinaBell 1 year ago
committed by GitHub
parent
commit
e3a93970f4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      packages/effects/plugins/src/vxe-table/extends.ts

6
packages/effects/plugins/src/vxe-table/extends.ts

@ -43,7 +43,11 @@ function extendProxyOption(
const data = await configFn(
params,
{
...customValues,
/**
* toolbarConfig.refresh功能
* PointerEvent
*/
...(customValues instanceof PointerEvent ? {} : customValues),
...formValues,
},
...args,

Loading…
Cancel
Save