创建用户隐藏系统管理员密码,首页系统管理员修改密码

This commit is contained in:
jiangzeyin 2019-04-08 16:47:09 +08:00
parent 85e34d53f6
commit 4d6499a49f
3 changed files with 10 additions and 3 deletions

View File

@ -146,7 +146,12 @@ public class UserInfoController extends BaseController {
return JsonMessage.getString(401, "登录名已经存在");
}
userModel = new UserModel();
userModel.setParent(userName.getId());
// 隐藏系统管理员登录名
if (userName.isSystemUser()) {
userModel.setParent(UserModel.SYSTEM_OCCUPY_NAME);
} else {
userModel.setParent(userName.getId());
}
String msg = parseUser(userModel, true);
if (msg != null) {
return msg;

View File

@ -53,6 +53,9 @@
return modes;
}
if (!fieldValue || fieldValue == "") {
return false;
}
## 密码强度等级说明,字符包括:小写字母、大写字母、数字、特殊字符
## 1---密码包含其中之一
## 2---密码包含其中之二

View File

@ -34,7 +34,6 @@
width: 100%;
}
/* <20><>Ƕ<EFBFBD><C7B6><EFBFBD><EFBFBD><EFBFBD>ʽ*/
.custom-iframe {
width: 100%;
height: 100%;
@ -302,7 +301,7 @@
}
## 密码强度
#if($user.isSystemUser())
if (!checkPasswordStrong(data.field.userPwd)) {
if (!checkPasswordStrong(data.field.confirmPwd)) {
layer.msg("系统管理员密码强度太低");
return false;
}