vue中不同模块间的跳转

1、在源列表里添加路由:

// 将源列表的项目id作为路由参数

   

2、在目标列表中监听路由:

// 路由切换页面刷新
activated() {
    if(this.$route.query){
        // 将路由参数作为搜索条件进行过滤
        this.searchForm.project_id = this.$route.query.id
    }
    this.pageNo = 1
    this.loadData(this.searchForm, this.pageNo, this.pageSize)
},

你可能感兴趣的:(vue)