|
@@ -30,7 +30,12 @@ namespace GxPress.Api.AdminControllers
|
|
|
[HttpGet("list")]
|
|
|
public async Task<IEnumerable<Entity.tede2.AppStartPage.AppStartPage>> GetAllAsync()
|
|
|
{
|
|
|
- return await appStartPageRepository.GetAllAsync();
|
|
|
+ var result = await appStartPageRepository.GetAllAsync();
|
|
|
+ foreach (var item in result)
|
|
|
+ {
|
|
|
+ item.ImageUrl = Common.Tools.StringUtils.AddDomain(item.ImageUrl);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 删除
|