perf[pagination]: Avoid repeating trigger requests

This commit is contained in:
Pan 2018-02-07 11:06:28 +08:00
parent dc35d1ae92
commit 398d59d78a

View file

@ -230,10 +230,16 @@ export default {
this.getList()
},
handleSizeChange(val) {
if (this.listQuery.limit === val) {
return
}
this.listQuery.limit = val
this.getList()
},
handleCurrentChange(val) {
if (this.listQuery.page === val) {
return
}
this.listQuery.page = val
this.getList()
},