Commit 9fd41317 by xuzhenghua

pull

parent f272c632
...@@ -100,17 +100,17 @@ class RedPacket extends PureComponent { ...@@ -100,17 +100,17 @@ class RedPacket extends PureComponent {
}); });
} }
} }
this.fetchShareInfo(); this.fetchShareInfo();
} }
// 获取分享信息 // 获取分享信息
fetchShareInfo = () => { fetchShareInfo = () => {
const share_code = getParam('share_code');
http.get(`${API.home}/sys/redPacket/shareUrl/${getParam('id')}`).then(res => { http.get(`${API.home}/sys/redPacket/shareUrl/${getParam('id')}`).then(res => {
const { code, data } = res.data; const { code, data } = res.data;
if(code === 200) { if(code === 200) {
this.setState({ this.setState({
shareInfo: data shareInfo: share_code? Object.assign({}, data, {share_code}) : data
}); });
} }
}); });
......
...@@ -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