李昊 4 年之前
父节点
当前提交
16a805d31a

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

@@ -221,7 +221,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);
@@ -253,7 +253,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

@@ -300,8 +300,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);