传值方式
router.push({pathname: '/identification', query: {pid, page}});
接收方式
const {
location: {
query: { pid, page },
}
} = this.props;
微信扫一扫
传值方式
router.push({pathname: '/identification', query: {pid, page}});
接收方式
const {
location: {
query: { pid, page },
}
} = this.props;
相关推荐