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

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

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