A页面跳转到B页面
在A页面添加上这个
第一步:
this.$router.push({
path: '/aaa/bbb',
query: {
aaNo
}
})
B页面
第二步:
getParams() {
// 取到路由带过来的参数
this.aaNo= this.$route.query.aaNo
}
B页面
第三步:
created() {
this.getParams()
if (this.aaNo !== '') {
//查询数据
}
},