问题还原

使用params无法在子组件中获取路由参数

<!--示例:发送数据组件-->
...
const type = 'phone';
this.$router.push({ name: 'bind', params: { type: res.type } })
...

<!--接收端-->
...
const type = this.$route.params.type
...

问题解决

将params替换为query实现路由传参

<!--示例:发送数据组件-->
...
const type = 'phone';
this.$router.push({ name: 'bind', query: { type: res.type } })
...

<!--接收端-->
...
const type = this.$route.query.type
...