1.修复分页查询导致的查询无结果问题

master
x_z 3 years ago
parent 51e962b2d4
commit 02cf0c10d0

@ -448,6 +448,9 @@ export default {
},
getList() {
this.loading = true;
if (this.filterQuery.companyName != null && this.filterQuery.companyName != '') {
this.filterQuery.page = 1;
}
getCustomers(this.filterQuery)
.then((response) => {
this.loading = false;

Loading…
Cancel
Save