zhengyiming
3 天以前 d64e4b3a63f88ca012a7c76dc622533c29d2f3ce
fix: 去掉密码md5加密
2个文件已修改
3 ■■■■ 已修改文件
auto-imports.d.ts 补丁 | 查看 | 原始文档 | blame | 历史
src/store/modules/user.ts 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
auto-imports.d.ts
src/store/modules/user.ts
@@ -62,7 +62,8 @@
      let res = await authServices.passwordLogin(
        {
          ...params,
          password: md5Encrypt(params.password),
          password: params.password,
          // password: md5Encrypt(params.password),
          type: AppLocalConfig.userType,
          clientType: AppLocalConfig.clientType,
        },