李昊 4 years ago
parent
commit
44bc754531

+ 2 - 5
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminAppStartPageController.cs

@@ -31,10 +31,7 @@ namespace GxPress.Api.AdminControllers
         public async Task<IEnumerable<Entity.tede2.AppStartPage.AppStartPage>> GetAllAsync()
         {
             var result = await appStartPageRepository.GetAllAsync();
-            foreach (var item in result)
-            {
-                item.ImageUrl = Common.Tools.StringUtils.AddDomain(item.ImageUrl);
-            }
+
             return result;
         }
         /// <summary>
@@ -50,7 +47,7 @@ namespace GxPress.Api.AdminControllers
         /// <summary>
         /// 修改
         /// </summary>
-        /// <param name="model"></param>
+        /// <param name="request"></param>
         /// <returns></returns>
         [HttpPut("")]
         public async Task<bool> UpdateAsync(AppStartPageUpdateRequest request)

+ 5 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/AppStartPage/AppStartPageRepository.cs

@@ -49,7 +49,11 @@ namespace GxPress.Repository.Implement.AppStartPage
         /// <returns></returns>
         public async Task<IEnumerable<Entity.tede2.AppStartPage.AppStartPage>> GetAllAsync()
         {
-            return await _repository.GetAllAsync(Q.OrderByDesc(nameof(Entity.tede2.AppStartPage.AppStartPage.CreatedDate)));
+            var result= await _repository.GetAllAsync(Q.OrderByDesc(nameof(Entity.tede2.AppStartPage.AppStartPage.CreatedDate)));
+            foreach (var item in result)
+            {
+                item.ImageUrl=StringUtils.AddDomain(item.ImageUrl);
+            }
         }
         /// <summary>
         /// 删除