Browse Source

feat:【framework 框架】增加 api 加解密能力(默认登录先不加密,避免大家不理解)

YunaiV 5 months ago
parent
commit
e9d59f41f9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/api/login/index.ts

+ 1 - 1
src/api/login/index.ts

@@ -17,7 +17,7 @@ export const login = (data: UserLoginVO) => {
     url: '/system/auth/login',
     data,
     headers: {
-      isEncrypt: true
+      isEncrypt: false
     }
   })
 }