Commit 9fd41317 by xuzhenghua

pull

parent f272c632
......@@ -100,17 +100,17 @@ class RedPacket extends PureComponent {
});
}
}
this.fetchShareInfo();
}
// 获取分享信息
fetchShareInfo = () => {
const share_code = getParam('share_code');
http.get(`${API.home}/sys/redPacket/shareUrl/${getParam('id')}`).then(res => {
const { code, data } = res.data;
if(code === 200) {
this.setState({
shareInfo: data
shareInfo: share_code? Object.assign({}, data, {share_code}) : data
});
}
});
......
......@@ -13,7 +13,7 @@ const PrivateRoute = ({component: Component, path, user, ...rest}) => {
useEffect(() => {
let _auth = !user.hasError && user.code != 4040
typeof _auth !== 'undefined' && (setAuthorization(_auth) , setLoadingState(false))
})
}, [user.hasError])
return (
......
......@@ -12,12 +12,6 @@ function RouteMiddlePage(props) {
useEffect(() => {
let {user, location, history} = props
if (history.action === 'POP' && history.length > 2) {
history.goBack();
return
}
if (!user.isFetching) {
if (user.hasError) {
history.replace('/passport', {from: location})
......@@ -32,7 +26,7 @@ function RouteMiddlePage(props) {
}
}
}
})
}, [props.user.isFetching])
return (
<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