refactor:优化请求,避免白屏时间过长
This commit is contained in:
parent
9a689cac65
commit
df5578f267
@ -22,7 +22,8 @@ let noLoginFinish = false;
|
|||||||
//执行各自的非登陆初始化
|
//执行各自的非登陆初始化
|
||||||
(async () => {
|
(async () => {
|
||||||
await store.dispatch(globalConfig.GLOBAL_CONFIG + "/" + globalConfig.noLoginInit);
|
await store.dispatch(globalConfig.GLOBAL_CONFIG + "/" + globalConfig.noLoginInit);
|
||||||
await store.dispatch(treeData.TREE_DATA + "/" + treeData.noLoginInit);
|
//无需等待执行
|
||||||
|
store.dispatch(treeData.TREE_DATA + "/" + treeData.noLoginInit);
|
||||||
noLoginFinish = true;
|
noLoginFinish = true;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
@ -35,8 +36,9 @@ export async function loginInit () {
|
|||||||
}
|
}
|
||||||
console.log(store.state[globalConfig.GLOBAL_CONFIG][globalConfig.TOKEN]);
|
console.log(store.state[globalConfig.GLOBAL_CONFIG][globalConfig.TOKEN]);
|
||||||
if (checkJwtValid(store.state[globalConfig.GLOBAL_CONFIG][globalConfig.TOKEN])) {
|
if (checkJwtValid(store.state[globalConfig.GLOBAL_CONFIG][globalConfig.TOKEN])) {
|
||||||
await store.dispatch(globalConfig.GLOBAL_CONFIG + "/" + globalConfig.loginInit);
|
//无需等待执行完毕
|
||||||
await store.dispatch(treeData.TREE_DATA + "/" + treeData.loginInit);
|
store.dispatch(globalConfig.GLOBAL_CONFIG + "/" + globalConfig.loginInit);
|
||||||
|
store.dispatch(treeData.TREE_DATA + "/" + treeData.loginInit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user