!7 update ZR.Admin.WebApi/Controllers/System/SysProfileController.cs.

Merge pull request !7 from 丁大侠/N/A
This commit is contained in:
不做码农 2022-05-16 23:30:26 +00:00 committed by Gitee
commit 9cdf5a4160
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -1,4 +1,4 @@
using Infrastructure; using Infrastructure;
using Infrastructure.Attribute; using Infrastructure.Attribute;
using Infrastructure.Enums; using Infrastructure.Enums;
using Infrastructure.Model; using Infrastructure.Model;
@ -98,15 +98,15 @@ namespace ZR.Admin.WebApi.Controllers.System
SysUser user = UserService.SelectUserById(loginUser.UserId); SysUser user = UserService.SelectUserById(loginUser.UserId);
string oldMd5 = NETCore.Encrypt.EncryptProvider.Md5(oldPassword); string oldMd5 = NETCore.Encrypt.EncryptProvider.Md5(oldPassword);
string newMd5 = NETCore.Encrypt.EncryptProvider.Md5(newPassword); string newMd5 = NETCore.Encrypt.EncryptProvider.Md5(newPassword);
if (user.Password != oldMd5) if (user.Password != oldMd5.ToLower())
{ {
return ToResponse(ApiResult.Error("修改密码失败,旧密码错误")); return ToResponse(ApiResult.Error("修改密码失败,旧密码错误"));
} }
if (user.Password == newMd5) if (user.Password == newMd5.ToLower())
{ {
return ToResponse(ApiResult.Error("新密码不能和旧密码相同")); return ToResponse(ApiResult.Error("新密码不能和旧密码相同"));
} }
if (UserService.ResetPwd(loginUser.UserId, newMd5) > 0) if (UserService.ResetPwd(loginUser.UserId, newMd5.ToLower()) > 0)
{ {
//TODO 更新缓存 //TODO 更新缓存