vue 点击顶部tab重新请求列表

vue 点击顶部tab重新请求列表_第1张图片
我们点击 1 2 来回切换时,发现客户经理的列表不会重新请求(菜单中含有客户经理)
这时我们添加以下代码就可以了

vue 点击顶部tab重新请求列表_第2张图片

  watch: {
    $route(route) {
      this.getList()
    }
  },

    /** 查询客户经理列表 */
    getList() {
      this.loading = true;
      listManager(this.queryParams).then(response => {
        this.managerList = response.rows;
        this.total = response.total;
        this.loading = false;
      });
    },

这时候,就会重新请求我们的数据列表接口.

你可能感兴趣的:(浅谈前端,vue.js,前端,javascript)