|
|
@@ -131,7 +131,12 @@ public class UserProvider extends BaseProvider implements IUserService {
|
|
|
captcha(requestId, username, captcha);
|
|
|
|
|
|
// 用户登录
|
|
|
- loginVo.setPassword(AESUtil.decryptUser(loginVo.getPassword()));
|
|
|
+ try{
|
|
|
+ String password = AESUtil.decryptUser(loginVo.getPassword());
|
|
|
+ loginVo.setPassword(password);
|
|
|
+ }catch (Exception e){
|
|
|
+ //
|
|
|
+ }
|
|
|
PartyUserPo user = login0(loginVo);
|
|
|
String statistic = getStatistic(user);
|
|
|
result.addVariable("statistic", statistic);
|