lihao 4 years ago
parent
commit
3442f76ccb

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/Group/GroupCategoryRepository.cs

@@ -141,7 +141,7 @@ namespace GxPress.Repository.Implement.Group
             var result = await connection.QueryAsync<GroupCategoryResult>(sql);
             var result = await connection.QueryAsync<GroupCategoryResult>(sql);
             foreach (var item in result)
             foreach (var item in result)
             {
             {
-                item.ImageUrls = StringUtils.AddDomainMin(item.ImageUrls);
+                item.ImageUrls = StringUtils.AddDomain(item.ImageUrls);
                 item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategory.ParentId), item.Id));
                 item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategory.ParentId), item.Id));
             }
             }
             return result;
             return result;