@tripup-company/element-ui-extended 0.0.17 → 0.0.21
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/dist/element-ui-extended.common.js +31 -14
- package/dist/element-ui-extended.common.js.map +1 -1
- package/dist/element-ui-extended.umd.js +31 -14
- package/dist/element-ui-extended.umd.js.map +1 -1
- package/dist/element-ui-extended.umd.min.js +1 -1
- package/dist/element-ui-extended.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CompositeTable/index.vue +2 -0
package/package.json
CHANGED
|
@@ -231,6 +231,7 @@ export default {
|
|
|
231
231
|
this.handleCurrentChange(1);
|
|
232
232
|
},
|
|
233
233
|
handleApplyFilter(val) {
|
|
234
|
+
Vue.set(this, "search", val);
|
|
234
235
|
this.listQueryService.updateListQuery({ search: val });
|
|
235
236
|
this.handleFilterChange();
|
|
236
237
|
},
|
|
@@ -245,6 +246,7 @@ export default {
|
|
|
245
246
|
this.handleFilterChange({});
|
|
246
247
|
},
|
|
247
248
|
handleApplyTopFilter(val) {
|
|
249
|
+
Vue.set(this, "topSearch", val);
|
|
248
250
|
this.listQueryService.updateListQuery({ topSearch: val });
|
|
249
251
|
this.handleFilterChange();
|
|
250
252
|
},
|