带参数页面跳转
this.props.history.pushState({passParam: true},"/targetURL");
第二个参数为跳转目标页面。
目标页面获取参数
let temp = this.props.location.state;