소스 검색

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

LinaBell 9 달 전
부모
커밋
e3a93970f4
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      packages/effects/plugins/src/vxe-table/extends.ts

+ 5 - 1
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,