李昊 4 years ago
parent
commit
474db71846

+ 9 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/SystemLabel/SystemLableMediaRepository.cs

@@ -47,6 +47,15 @@ namespace GxPress.Repository.Implement.SystemLabel
         {
             return await _repository.GetAllAsync<int>(Q.Where(nameof(Entity.SystemLabel.SystemLableMedia.LableId), lableId).Where(nameof(Entity.SystemLabel.SystemLableMedia.TypeValue), typeValue).Select(nameof(Entity.SystemLabel.SystemLableMedia.MediaId)));
         }
+        /// <summary>
+        /// 根据分类获取媒体ID
+        /// </summary>
+        /// <param name="lableId"></param>
+        /// <returns></returns>
+        public async Task<IEnumerable<int>> GetMediaIdsByTypeValueAsync(int typeValue)
+        {
+            return await _repository.GetAllAsync<int>(Q.Where(nameof(Entity.SystemLabel.SystemLableMedia.TypeValue), typeValue).Select(nameof(Entity.SystemLabel.SystemLableMedia.MediaId)));
+        }
         public async Task<bool> DeleteAsync(List<int> ids)
         {
             return await _repository.DeleteAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLableMedia.Id), ids)) > 0;

+ 6 - 0
gx_api/GxPress/Repository/GxPress.Repository.Interface/SystemLabel/ISystemLableMediaRepository.cs

@@ -21,6 +21,12 @@ namespace GxPress.Repository.Interface.SystemLabel
         /// <param name="request"></param>
         /// <returns></returns>
         Task<bool> InsertAsync(SystemLableMediaRequest request);
+         /// <summary>
+        /// 根据分类获取媒体ID
+        /// </summary>
+        /// <param name="lableId"></param>
+        /// <returns></returns>
+        Task<IEnumerable<int>> GetMediaIdsByTypeValueAsync(int typeValue);
     }
 
 }

+ 5 - 0
gx_api/GxPress/Service/GxPress.Service.Implement/AppHomePage/AppHomePageService.cs

@@ -290,6 +290,11 @@ namespace GxPress.Service.Implement.AppHomePage
                 var mediaIds = await systemLableMediaRepository.GetMediaIdsAsync(request.CategoryId, 1);
                 request.MediaIds = mediaIds.ToList();
             }
+            else
+            {
+                var mediaIds = await systemLableMediaRepository.GetMediaIdsByTypeValueAsync(1);
+                request.MediaIds = mediaIds.ToList();
+            }
             return await mediaRepository.GetContentNavigationAsync(request);
         }
     }