李昊 4 年之前
父节点
当前提交
6be7fa361e

+ 4 - 2
gx_api/GxPress/Repository/GxPress.Repository.Implement/GroupRepository.cs

@@ -237,8 +237,10 @@ namespace GxPress.Repository.Implement
                 throw new BusinessException("小组不存在");
             if (!string.IsNullOrEmpty(groupDetail.AvatarUrl))
                 groupDetail.AvatarUrl = StringUtils.AddDomain(groupDetail.AvatarUrl);
-            if (!string.IsNullOrEmpty(groupDetail.QRCoder))
-                groupDetail.QRCoder = StringUtils.AddDomain(groupDetail.QRCoder);
+             if (!string.IsNullOrEmpty(groupDetail.AvatarUrl))
+                groupDetail.AvatarUrl = StringUtils.AddDomain(groupDetail.AvatarUrl);
+            if (!string.IsNullOrEmpty(groupDetail.HistoryAvatarUrl))
+                groupDetail.HistoryAvatarUrl = StringUtils.AddDomain(groupDetail.HistoryAvatarUrl);
             var sql =
                 "SELECT a.*,b.Name,b.AvatarUrl,c.Name  FROM tede_group_user a inner join tede_user b on a.UserId=b.Id inner join tede_department c on b.DepartmentId=c.Id where a.GroupId=@groupId order by a.GroupUserRoleId";
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);

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

@@ -90,6 +90,8 @@ namespace GxPress.Repository.Implement
             var user = await _repository.GetAsync(id);
             user.QRCoder = StringUtils.AddDomain(user.QRCoder);
             user.AvatarUrl = StringUtils.AddDomainMin(user.AvatarUrl);
+            if (!string.IsNullOrEmpty(user.HistoryAvatarUrl))
+                user.HistoryAvatarUrl = StringUtils.AddDomain(user.HistoryAvatarUrl);
             var userDetail = _mapper.Map<UserDetail>(user);
             if (user.DepartmentId > 0)
             {

+ 1 - 0
gx_api/GxPress/Service/GxPress.Service.Implement/UserService.cs

@@ -134,6 +134,7 @@ namespace GxPress.Service.Implement
                 userDetail.DepartmentName = department.Name;
             }
             userDetail.AvatarUrl = StringUtils.AddDomainMin(userDetail.AvatarUrl);
+            userDetail.HistoryAvatarUrl = StringUtils.AddDomainMin(userDetail.HistoryAvatarUrl);
             userDetail.IsBlack = await _blacklistUserRepository.FindUserIsBlack(userId, blackUserId);
             return userDetail;
         }