李昊 4 년 전
부모
커밋
8b05b46212
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

+ 5 - 1
GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -310,7 +310,11 @@ namespace GxPress.Repository.Implement
                     user = await GetByPhoneAsync(request.Phone);
                     //用户不存在,自动注册
                     if (user == null)
-                        throw new BusinessException("用户不存在");
+                    {
+                        user.Name = request.Phone;
+                        user.Phone = request.Phone;
+                        user.Id = await InsertAsync(user);
+                    }
                 }
                 else
                     user = await GetByOpenIdAsync(request.OpenId);