Skip to content
Snippets Groups Projects
Commit 523a9b3d authored by Pan's avatar Pan
Browse files

add promise

parent faea4d8b
No related branches found
No related tags found
No related merge requests found
......@@ -24,25 +24,28 @@ const permission = {
actions: {
// s
GenerateRoutes({ commit }, data) {
const { roles } = data;
const accessedRouters = asyncRouterMap.filter(v => {
if (roles.indexOf('admin') >= 0) return true;
if (hasPermission(roles, v)) {
if (v.children && v.children.length > 0) {
v.children = v.children.filter(child => {
if (hasPermission(roles, child)) {
return child
}
return false;
});
return v
} else {
return v
return new Promise(resolve => {
const { roles } = data;
const accessedRouters = asyncRouterMap.filter(v => {
if (roles.indexOf('admin') >= 0) return true;
if (hasPermission(roles, v)) {
if (v.children && v.children.length > 0) {
v.children = v.children.filter(child => {
if (hasPermission(roles, child)) {
return child
}
return false;
});
return v
} else {
return v
}
}
}
return false;
});
commit('SET_ROUTERS', accessedRouters);
return false;
});
commit('SET_ROUTERS', accessedRouters);
resolve();
})
}
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment