Commit 31052b29 authored by jim's avatar jim

fix rebase url bug

parent 04e920e5
...@@ -43,7 +43,7 @@ class HeaderView extends PureComponent { ...@@ -43,7 +43,7 @@ class HeaderView extends PureComponent {
}; };
handleMenuClick = ({ key }) => { handleMenuClick = ({ key }) => {
if (key === 'userCenter') { if (key === 'userCenter') {
this.props.dispatch(routerRedux.push('/user-profile/user-center')); this.props.dispatch(routerRedux.push('/account/center'));
return; return;
} }
if (key === 'triggerError') { if (key === 'triggerError') {
...@@ -51,7 +51,7 @@ class HeaderView extends PureComponent { ...@@ -51,7 +51,7 @@ class HeaderView extends PureComponent {
return; return;
} }
if (key === 'userinfo') { if (key === 'userinfo') {
this.props.dispatch(routerRedux.push('/user-profile/userinfo/base')); this.props.dispatch(routerRedux.push('/account/settings/base'));
return; return;
} }
if (key === 'logout') { if (key === 'logout') {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment