提交 e1a65d56 authored 作者: vipcxj's avatar vipcxj

不存在模块历史记录的时候不自动调整到快速导航页面

上级 a7f273a9
...@@ -158,13 +158,16 @@ function RouterConfig({ history, app }) { ...@@ -158,13 +158,16 @@ function RouterConfig({ history, app }) {
path: `${contextPath}/`, path: `${contextPath}/`,
component: App, component: App,
indexRoute: { indexRoute: {
onEnter: (nextState, replace) => { onEnter: (nextState, replace, cb) => {
histories.getLatest('module').then((latest) => { histories.getLatest('module').then((latest) => {
if (latest && config.fastNavigationPage) { if (latest && config.fastNavigationPage) {
replace(`${contextPath}/fastNav`); replace(`${contextPath}/fastNav`);
} else { } else {
replace(`${contextPath}/main`); replace(`${contextPath}/main`);
} }
cb();
}).catch((err) => {
cb(err);
}); });
}, },
}, },
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论