Explorar el Código

feat: site default authority="[admin]"

陈帅 hace 6 años
padre
commit
4cc4415182
Se han modificado 1 ficheros con 1 adiciones y 4 borrados
  1. 1 4
      src/utils/authority.js

+ 1 - 4
src/utils/authority.js

@@ -1,6 +1,4 @@
 // use localStorage to store the authority info, which might be sent from server in actual project.
-const { NODE_ENV } = process.env;
-
 export function getAuthority(str) {
   // return localStorage.getItem('antd-pro-authority') || ['admin', 'user'];
   const authorityString =
@@ -15,12 +13,11 @@ export function getAuthority(str) {
   if (typeof authority === 'string') {
     return [authority];
   }
-  if (!authority && NODE_ENV !== 'production') {
+  if (!authority && APP_TYPE === 'site') {
     return ['admin'];
   }
   return authority;
 }
-
 export function setAuthority(authority) {
   const proAuthority = typeof authority === 'string' ? [authority] : authority;
   return localStorage.setItem('antd-pro-authority', JSON.stringify(proAuthority));