Commit f4239564 by zhanghaozhe

bug

parent eef6f1af
...@@ -13,7 +13,7 @@ const PrivateRoute = ({component: Component, path, user, ...rest}) => { ...@@ -13,7 +13,7 @@ const PrivateRoute = ({component: Component, path, user, ...rest}) => {
useEffect(() => { useEffect(() => {
let _auth = !user.hasError && user.code != 4040 let _auth = !user.hasError && user.code != 4040
typeof _auth !== 'undefined' && (setAuthorization(_auth) , setLoadingState(false)) typeof _auth !== 'undefined' && (setAuthorization(_auth) , setLoadingState(false))
}) }, [user.hasError])
return ( return (
......
...@@ -12,12 +12,6 @@ function RouteMiddlePage(props) { ...@@ -12,12 +12,6 @@ function RouteMiddlePage(props) {
useEffect(() => { useEffect(() => {
let {user, location, history} = props let {user, location, history} = props
if (history.action === 'POP' && history.length > 2) {
history.goBack();
return
}
if (!user.isFetching) { if (!user.isFetching) {
if (user.hasError) { if (user.hasError) {
history.replace('/passport', {from: location}) history.replace('/passport', {from: location})
...@@ -32,7 +26,7 @@ function RouteMiddlePage(props) { ...@@ -32,7 +26,7 @@ function RouteMiddlePage(props) {
} }
} }
} }
}) }, [props.user.isFetching])
return ( return (
<div className={'loading-route'}> <div className={'loading-route'}>
......
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