|
@@ -311,7 +311,8 @@ namespace GxPress.Repository.Implement
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- var code = "123456";
|
|
|
+ //var code = "123456";
|
|
|
+ var code = _cache.GetString(key).Replace("\"", "");
|
|
|
if (string.IsNullOrEmpty(code)) throw new BusinessException("验证码已过期");
|
|
|
if (!request.Code.Equals(code, StringComparison.OrdinalIgnoreCase)) throw new BusinessException("验证码错误");
|
|
|
user = await GetByPhoneAsync(request.Phone);
|