修改新建课堂新开页 goback 无效

topic_bank
杨树林 6 years ago
parent 47a51ea60f
commit 443e427a7e

@ -335,11 +335,19 @@ class CoursesNew extends Component {
// this.props.history.push(this.props.current_user.first_category_url); // this.props.history.push(this.props.current_user.first_category_url);
// } // }
// window.history.go(-1) // window.history.go(-1)
if(id===undefined){ try {
this.props.history.goBack() if(id===undefined){
}else{ this.props.history.push("/");
this.props.history.push(this.props.current_user.first_category_url); }else{
} if(this.props.current_user.first_category_url===undefined){
this.props.history.push("/");
}else{
this.props.history.push(this.props.current_user.first_category_url);
}
}
}catch (e) {
this.props.history.push("/");
}
} }

Loading…
Cancel
Save