|
@@ -579,17 +579,13 @@ namespace GxPress.Repository.Implement
|
|
|
var code = _cache.GetString(key).Replace("\"", "");
|
|
|
if (string.IsNullOrEmpty(code)) throw new BusinessException("验证码已过期");
|
|
|
if (!request.Code.Equals(code, StringComparison.OrdinalIgnoreCase)) throw new BusinessException("验证码错误");
|
|
|
-
|
|
|
var user = await GetAsync(request.UserId);
|
|
|
-
|
|
|
//用户不存在,自动注册
|
|
|
if (user == null)
|
|
|
{
|
|
|
throw new BusinessException("该用户不存在");
|
|
|
}
|
|
|
-
|
|
|
user.Phone = request.Phone;
|
|
|
-
|
|
|
return await _repository.UpdateAsync(user);
|
|
|
}
|
|
|
|