snow 2 years ago
parent
commit
c6f9737e8e
3 changed files with 21 additions and 18 deletions
  1. 0 0
      dist/static/js/app.js
  2. 3 0
      src/layout/components/company-select/index.vue
  3. 18 18
      src/store/modules/user.js

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.js


+ 3 - 0
src/layout/components/company-select/index.vue

@@ -168,12 +168,14 @@ export default {
       this.$emit('change', currentCompany)
       // 作为通用组件使用不设置全局选中公司
       if (!this.global) return null
+
       // 只能选择业务公司的页面
       const { path } = this.$route
       if (isOnlyBusinessCompanyPath(path) && !isBusinessCompany(currentCompany)) {
         this.$message.warning('该页面只能选择业务公司')
         return
       }
+
       this.$store.commit(userStoreActions.setCurrentCompany, currentCompany)
       if (this.isSupertube) return null // 超管用户不刷新路由
       this.changeRouterWithCompany()
@@ -270,6 +272,7 @@ export default {
         ...params,
         ...(this.isSupertube ? { type: isSupplier ? '3' : '1' } : {})
       })
+
       this.state.loading = false
       const isTransborder = this.companylist.length >= Number(data.count) // 是否越界
 

+ 18 - 18
src/store/modules/user.js

@@ -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,

Some files were not shown because too many files changed in this diff