apply-clients 5.0.35-ezhou-25 → 5.0.35-ezhou-25-1
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
|
@@ -296,7 +296,10 @@
|
|
|
296
296
|
},
|
|
297
297
|
methods: {
|
|
298
298
|
clear () {
|
|
299
|
-
this.$refs.paged.$refs.criteria.model = {}
|
|
299
|
+
// this.$refs.paged.$refs.criteria.model = {}
|
|
300
|
+
Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {
|
|
301
|
+
this.$refs.paged.$refs.criteria.model[key] = []
|
|
302
|
+
})
|
|
300
303
|
},
|
|
301
304
|
getRes (obj) {
|
|
302
305
|
this.filialeNameStr = obj.res
|
|
@@ -354,7 +357,7 @@
|
|
|
354
357
|
},
|
|
355
358
|
cleaner () {
|
|
356
359
|
Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {
|
|
357
|
-
this.$refs.paged.$refs.criteria.model[key] =
|
|
360
|
+
this.$refs.paged.$refs.criteria.model[key] = []
|
|
358
361
|
})
|
|
359
362
|
console.log('condition:', this.$refs.paged.$refs.criteria.condition)
|
|
360
363
|
this.$refs.paged.$refs.criteria.condition = this.$refs.paged.$refs.criteria.condition+" and r.f_filiale like '%"+this.$login.f.f_fengongsi+"%'"
|