Vue 有时在路由跳转时需要用到一些原页面里的数据,用以下方法: 1.在跳转页的方法里写下query参数 TableChange(scope){ this.$router.push({ path:'details', name:'details', query:{ //需要携带的参数 projectId:this.projectId, projectName:this.projectName, linkMan:this.linkMan, phone:this.phone, address:thi…