|
@@ -142,6 +142,7 @@ namespace GxPress.Api.AppControllers
|
|
|
if (!string.IsNullOrEmpty(code))
|
|
|
throw new BusinessException("请求太频繁!");
|
|
|
code = RandomGenerator.GetNumberString(6);
|
|
|
+ code = "123456";
|
|
|
if (Common.Sms.AliySms.SendSms(phone, code))
|
|
|
{
|
|
|
_logger.LogInformation("{phone}验证码:{code}", phone, code);
|
|
@@ -348,7 +349,7 @@ namespace GxPress.Api.AppControllers
|
|
|
[HttpPost("search")]
|
|
|
public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
|
|
|
{
|
|
|
- return await _userService.GetSearchUserInfoResults(_loginContext.AccountId,request.Key);
|
|
|
+ return await _userService.GetSearchUserInfoResults(_loginContext.AccountId, request.Key);
|
|
|
}
|
|
|
|
|
|
/// <summary>
|