Commit f9f8eb00 authored by jim's avatar jim

fix #710

parent 4893296e
...@@ -174,6 +174,11 @@ class BasicLayout extends React.PureComponent { ...@@ -174,6 +174,11 @@ class BasicLayout extends React.PureComponent {
<Content style={{ margin: '24px 24px 0', height: '100%' }}> <Content style={{ margin: '24px 24px 0', height: '100%' }}>
<div style={{ minHeight: 'calc(100vh - 260px)' }}> <div style={{ minHeight: 'calc(100vh - 260px)' }}>
<Switch> <Switch>
{
redirectData.map(item =>
<Redirect key={item.from} exact from={item.from} to={item.to} />
)
}
{ {
getRoutes(match.path, routerData).map(item => getRoutes(match.path, routerData).map(item =>
( (
...@@ -188,11 +193,6 @@ class BasicLayout extends React.PureComponent { ...@@ -188,11 +193,6 @@ class BasicLayout extends React.PureComponent {
) )
) )
} }
{
redirectData.map(item =>
<Redirect key={item.from} exact from={item.from} to={item.to} />
)
}
<Redirect exact from="/" to={bashRedirect} /> <Redirect exact from="/" to={bashRedirect} />
<Route render={NotFound} /> <Route render={NotFound} />
</Switch> </Switch>
......
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