李昊 4 gadi atpakaļ
vecāks
revīzija
77177c326d

+ 2 - 2
GxPress/Api/GxPress.Api/AppControllers/UserController.cs

@@ -215,7 +215,7 @@ namespace GxPress.Api.AppControllers
             if (!string.IsNullOrEmpty(code))
                 throw new BusinessException("请求太频繁!");
             code = RandomGenerator.GetNumberString(6);
-            code = "123456";
+            //code = "123456";
             if (Common.Sms.AliySms.SendSms(phone, code))
             {
                 _logger.LogInformation("{phone}验证码:{code}", phone, code);
@@ -247,7 +247,7 @@ namespace GxPress.Api.AppControllers
             if (!string.IsNullOrEmpty(code))
                 throw new BusinessException("请求太频繁!");
             code = RandomGenerator.GetNumberString(6);
-            code = "123456";
+            //code = "123456";
             if (Common.Sms.AliySms.SendSms(phone, code))
             {
                 _logger.LogInformation("{phone}验证码:{code}", phone, code);

+ 2 - 2
GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

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