为了账号安全,请及时绑定邮箱和手机立即绑定

分页条件查询点击下一页后变成全部数据?

分页条件查询点击下一页后变成全部数据?

慕少森 2019-03-20 18:19:48
一个页面有table表格, 里面有很多数据, 有搜索框, 当点击搜索的时候, 可以进行筛选, 但是点击下一页的时候, 数据变成全部的数据, 分页也跟着变了以下是点击搜索的时候筛选的数据3.当点击下一页的时候数据变成全部数据jsexport default {  data() {    return {      botanyData: [],      activeName2: "first",      query: {        pageNum: 1,        pageSize: 10,        currentPage: 1,        recordCount: 0      },      seek: {        familyName: "",        speciesName: "",        genusName: ""      },      familyName: "",      speciesName: "",      genusName: ""    };  },  methods: {    // 植物数据    wildPlantData() {      this.$http        .get(this.$api.wildPlant, {          params: { pageNum: this.query.currentPage }        })        .then(res => {          if (res.status == 200) {            this.botanyData = res.data.data.pageBean.recordList;            this.query.recordCount = res.data.data.pageBean.recordCount;            this.query.pageSize = res.data.data.pageBean.pageSize;            this.query.currentPage = res.data.data.pageBean.currentPage;          } else {            throw res.message;          }        })        .catch(err => {          console.log("wildPlantData有异常", err);        });    },    // 查询    queryData() {      this.seek.familyName = this.familyName;      this.seek.speciesName = this.speciesName;      this.seek.genusName = this.genusName;      this.$http        .get(this.$api.wildPlant, { params: this.seek })        .then(res => {          if (res.status == 200) {            this.botanyData = res.data.data.pageBean.recordList;            this.query.recordCount = res.data.data.pageBean.recordCount;            this.query.pageSize = res.data.data.pageBean.pageSize;            this.query.currentPage = res.data.data.pageBean.currentPage;          } else {            throw res.message;          }        })        .catch(err => {          console.log("queryData有异常", err);        });    }, 
查看完整描述

1 回答

?
眼眸繁星

TA贡献1873条经验 获得超9个赞

用开发者工具看看你请求的参数,以及返回的数据


查看完整回答
反对 回复 2019-03-27
  • 1 回答
  • 0 关注
  • 1023 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信