|
@@ -212,7 +212,7 @@ const actions = {
|
|
|
const company = getUserCompany()
|
|
|
|
|
|
MessageBox
|
|
|
- .alert(`公司 ${company.name} 角色异常或该公司禁用,请检查账号或者角色设置`, '公司角色异常',{type:'warning', confirmButtonText:'前往首页'})
|
|
|
+ .alert(`公司 ${company.name} 角色异常或该公司禁用,请检查账号或者角色设置`, '公司角色异常', {type: 'warning', confirmButtonText:'前往首页'})
|
|
|
.then(() => {router.push("/reload?redirect=welcome/dashboard")})
|
|
|
.catch(() => {router.push("/reload?redirect=welcome/dashboard")})
|
|
|
},
|
|
@@ -337,7 +337,7 @@ const actions = {
|
|
|
|
|
|
//获取缓存里的业务公司 => 公司名称搜索 => 存在设置为默认公司
|
|
|
const { data: companyData, code: companyCode } = await api({
|
|
|
- ...(!isSupertube ? ({size:10000}) : {}),
|
|
|
+ ...(!isSupertube ? ({size:10000}) : {type: '1'}),
|
|
|
...({token: getToken()}),
|
|
|
})
|
|
|
|
|
@@ -465,21 +465,21 @@ async function getRoleProcess(roleid) {
|
|
|
};
|
|
|
}
|
|
|
|
|
|
-// function isHasRoute(routes){
|
|
|
-// let isHas = false
|
|
|
-// const currentPath = location.hash.split('#')[1]
|
|
|
-// console.log(currentPath)
|
|
|
+function isHasRoute(routes){
|
|
|
+ let isHas = false
|
|
|
+ const chunks = location.hash.split('/')
|
|
|
+ const currentPath = chunks[chunks.length - 1]
|
|
|
|
|
|
-// const dfs = (routes) => {
|
|
|
-// routes.forEach(route => {
|
|
|
-// if(route.path === currentPath) isHas = true;
|
|
|
-// if(route.children && route.children.length > 0) dfs(route.children)
|
|
|
-// })
|
|
|
-// }
|
|
|
+ const dfs = (routes) => {
|
|
|
+ routes.forEach(route => {
|
|
|
+ if(route.path === currentPath) isHas = true;
|
|
|
+ if(route.children && route.children.length > 0) dfs(route.children)
|
|
|
+ })
|
|
|
+ }
|
|
|
|
|
|
-// dfs(routes)
|
|
|
-// return isHas
|
|
|
-// }
|
|
|
+ dfs(routes)
|
|
|
+ return isHas
|
|
|
+}
|
|
|
|
|
|
// 区分供应商和业务公司获取不同的菜单列表
|
|
|
async function getRoleMenuList(level = "") {
|
|
@@ -487,7 +487,6 @@ async function getRoleMenuList(level = "") {
|
|
|
...(level ? {level} : {})
|
|
|
})
|
|
|
|
|
|
-
|
|
|
//menu接受账户异常:禁用 并返回
|
|
|
if(message === '账户已禁用' || message === '没有该公司的默认角色'){
|
|
|
return {
|
|
@@ -541,8 +540,9 @@ async function getRoleMenuList(level = "") {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- // const isHas = isHasRoute(arrag)
|
|
|
- // if(!isHas) router.push('/welcome')
|
|
|
+ //fix:默认获取业务公司的路由,如果跳转的是供应商路由应该指向/welcome
|
|
|
+ const isHas = isHasRoute(arrag)
|
|
|
+ if(!isHas) router.push('/welcome')
|
|
|
|
|
|
return {
|
|
|
mcode: code,
|