Commit f26c16f0 by zhanghaozhe

Merge branch 'master' into study

parents 2a04d736 620df63e
import React, { useEffect } from 'react'; import React, { useEffect, useState } from 'react';
import { withRouter } from "react-router-dom"; import { withRouter } from "react-router-dom";
import { compose } from "redux"; import { compose } from "redux";
import { connect } from "react-redux"; import { connect } from "react-redux";
import LoadingComponent from '@/common/Loading'
function Loading(props) { function Loading(props) {
const [isLoading, setLoadingState] = useState(true)
useEffect(() => { useEffect(() => {
let {user, location, history} = props let {user, location, history} = props
if (!user.isFetching) { if (!user.isFetching) {
if (user.hasError) { if (user.hasError) {
history.push('/passport', {from: location}) history.push('/passport', {from: location})
setLoadingState(false)
} else { } else {
if (Object.values(user.data).every(item => !!item).length !== 0) { if (Object.values(user.data).every(item => !!item).length !== 0) {
history.push(location.pathname) history.push(location.pathname)
setLoadingState(false)
} }
} }
} }
}) })
return ( return (
<div className={'loading'}> <div className={'loading-route'}>
loading... <LoadingComponent isLoading={isLoading}/>
</div> </div>
); );
} }
......
...@@ -19,7 +19,6 @@ import Passport from '@/components/passport'; ...@@ -19,7 +19,6 @@ import Passport from '@/components/passport';
import { Scholarship } from '@/components/scholarship/index'; import { Scholarship } from '@/components/scholarship/index';
import DrawDocument from '@/components/scholarship/DrawDocument/DrawDocument'; import DrawDocument from '@/components/scholarship/DrawDocument/DrawDocument';
import PayOrder from '@/components/order/payOrder/PayOrder' import PayOrder from '@/components/order/payOrder/PayOrder'
import Loading from '@/common/Loading'
const Coupons = loadable(() => import(/* webpackChunkName: 'coupons'*/ '@/components/coupons')) const Coupons = loadable(() => import(/* webpackChunkName: 'coupons'*/ '@/components/coupons'))
const Study = loadable(() => import(/* webpackChunkName: 'study'*/'@/components/study')) const Study = loadable(() => import(/* webpackChunkName: 'study'*/'@/components/study'))
...@@ -138,9 +137,4 @@ export default [ ...@@ -138,9 +137,4 @@ export default [
component: ToGroup, component: ToGroup,
isPrivate: true isPrivate: true
}, },
{
path: '/loading',
component: Loading,
},
] ]
\ No newline at end of file
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