@ddwl/ddwl-ui 1.4.5 → 1.4.6

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": "@ddwl/ddwl-ui",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
4
4
  "private": false,
5
5
  "main": "dist/index.common.js",
6
6
  "style": "dist/index.css",
@@ -256,7 +256,10 @@ export default {
256
256
  const defaultParams =
257
257
  typeof this.requestConfig.params === 'function'
258
258
  ? this.requestConfig.params(this.form)
259
- : this.requestConfig.params
259
+ : {
260
+ ...this.form,
261
+ ...this.requestConfig.params
262
+ }
260
263
  params = {
261
264
  ...params,
262
265
  ...defaultParams