|
@@ -1325,9 +1325,12 @@ func (this *SysAdminController) ResetPass() {
|
|
|
_ = utils.Rc.Delete(utils.CACHE_KEY_ADMIN_ID)
|
|
|
abnormalKey := fmt.Sprint(utils.CACHE_ABNORMAL_LOGIN, adminInfo.AdminName)
|
|
|
errPassKey := fmt.Sprint(utils.CACHE_LOGIN_ERR_PASS, adminInfo.AdminName)
|
|
|
+ mobileAbnormalKey := fmt.Sprint(utils.MOBILE_CACHE_ABNORMAL_LOGIN, adminInfo.Mobile)
|
|
|
+ mobileErrPassKey := fmt.Sprint(utils.MOBILE_CACHE_LOGIN_ERR_PASS, adminInfo.Mobile)
|
|
|
_ = utils.Rc.Delete(abnormalKey)
|
|
|
_ = utils.Rc.Delete(errPassKey)
|
|
|
-
|
|
|
+ _ = utils.Rc.Delete(mobileAbnormalKey)
|
|
|
+ _ = utils.Rc.Delete(mobileErrPassKey)
|
|
|
br.Ret = 200
|
|
|
br.Success = true
|
|
|
br.IsAddLog = true
|