在当前页面设置router-link
<router-link class="normalBtn" tag="a" :to="{name:'historyRecordId',params: {id:radio}}" >下一步</router-link>
然后在下一个页面接收上一个页面带过来的参数
<script>
export default {
// 组件实例化完毕,但页面还未显示,接收上个页面传过来的参数
created(){
this.queryId = this.$route.params.id;
}
}
</script>
参考:https://blog.csdn.net/jiandan1127/article/details/86170336