elementui分页更改后,需要再次调用获取列表数据函数

handleCurrentChange(val) {
      this.queryParams.pagenum = val
      console.log('显示第' + this.queryParams.pagenum + '页')
      this.getOrderList()
    },
    handleSizeChange(val) {
      this.queryParams.pagesize = val
      console.log('每页显示' + this.queryParams.pagesize + '条')
      this.getOrderList()
    },
 
// 更改玩分页忘记再次调用获取数据列表,导致更改分页一直无效,记录下
原文地址:https://www.cnblogs.com/JeffreyZhu/p/15818457.html