Pre Merge pull request !459 from abbfun/N/A

This commit is contained in:
abbfun 2022-05-01 12:24:22 +00:00 committed by Gitee
commit 831703c6d1
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -96,8 +96,9 @@ public class SysProfileController extends BaseController
public AjaxResult updatePwd(String oldPassword, String newPassword)
{
LoginUser loginUser = getLoginUser();
String userName = loginUser.getUsername();
String password = loginUser.getPassword();
SysUser user = userService.selectUserById(loginUser.getUserId());
String userName = user.getUserName();
String password = user.getPassword();
if (!SecurityUtils.matchesPassword(oldPassword, password))
{
return AjaxResult.error("修改密码失败,旧密码错误");