客户端用户密码修改BUG更改;

客户端用户只有取消审核通过和删除的策略时,允许删除此用户;
客户端用户修改成功后,给出提示信息。
This commit is contained in:
段冬梅
2019-02-21 10:55:26 +08:00
parent 60392b2493
commit 043cb275dc
3 changed files with 5 additions and 4 deletions

View File

@@ -110,7 +110,7 @@ public class UserManageService extends BaseService{
params.put("cmd",Constants.NTC_IP_REUSE_USER_PASSWORD);
params.put("server_ip", ip);
params.put("user_name", entity.getUserName());
params.put("user_pwd", entity.getUserName());
params.put("user_pwd", entity.getUserPwd());
String url =Constants.IP_REUSE_CALL_CGI_URL ;
String recv = ConfigServiceUtil.getCGI(url, params);
}