@lambo-design/schema-paging-table 1.0.0-beta.16 → 1.0.0-beta.17

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/index.vue +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design/schema-paging-table",
3
- "version": "1.0.0-beta.16",
3
+ "version": "1.0.0-beta.17",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -10,10 +10,10 @@
10
10
  "registry": "https://registry.npmjs.org/"
11
11
  },
12
12
  "devDependencies": {
13
- "@lambo-design/core": "^4.7.1-beta.113",
14
- "@lambo-design/shared": "^1.0.0-beta.100",
15
13
  "@lambo-design/schema-form": "^1.0.0-beta.40",
16
- "@lambo-design/paging-table": "^1.0.0-beta.72"
14
+ "@lambo-design/paging-table": "^1.0.0-beta.72",
15
+ "@lambo-design/core": "^4.7.1-beta.114",
16
+ "@lambo-design/shared": "^1.0.0-beta.100"
17
17
  },
18
18
  "scripts": {}
19
19
  }
package/src/index.vue CHANGED
@@ -282,7 +282,8 @@ export default {
282
282
  this.tableSearchParams = Object.assign({}, this.queryForm)
283
283
  },
284
284
  onReset() {
285
- Object.assign(this.queryForm, this.$options.propsData.form)
285
+ // Object.assign(this.queryForm, this.$options.propsData.form)
286
+ this.queryForm = this.$options.propsData.form;
286
287
  this.doSearch()
287
288
  },
288
289
  fetch: function (request,response) {