李昊 il y a 4 ans
Parent
commit
f98f869465

+ 5 - 3
GxPress/Api/GxPress.Api/AppControllers/UserController.cs

@@ -199,13 +199,15 @@ namespace GxPress.Api.AppControllers
         public async Task<bool> SendSmsCode([FromQuery][Required][Mobile] string phone)
         {
             var user = await _userRepository.GetByPhoneAsync(phone);
-
             //用户不存在
             if (user == null)
             {
-                throw new BusinessException("该用户不存在");
+                user = new User();
+                user.Name = phone;
+                user.Phone = phone;
+                user.Id = await _userRepository.InsertAsync(user);
+                await _userRepository.CreateMiUserAsync(user);
             }
-
             //TODO 短信验证码发送
             //return await _smsService.
             //SendValidationCodeAsync(phone);

+ 0 - 3
GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -1,7 +1,6 @@
 using System;
 using System.Collections.Generic;
 using System.Linq;
-using System.Net.Http;
 using System.Threading.Tasks;
 using AutoMapper;
 using GxPress.Common.Extensions;
@@ -25,8 +24,6 @@ using Dapper;
 using GxPress.Result.App.User;
 using GxPress.Result.Job;
 using GxPress.Common.Http;
-using System.Net;
-using System.Threading;
 using Newtonsoft.Json.Linq;
 using Microsoft.Extensions.Logging;