李昊 4 年之前
父節點
當前提交
435899ea4c

+ 1 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/SpecialLabel/SpecialLabelRepository.cs

@@ -106,6 +106,7 @@ namespace GxPress.Repository.Implement.SpecialLabel
                 query.WhereLike(nameof(Entity.SystemLabel.SpecialLabel.Title), $"%{request.KeyWord}%");
             result.Total = await _repository.CountAsync(query);
             query.OrderByDesc(nameof(Entity.SystemLabel.SpecialLabel.Sort));
+            query.ForPage(request.Page, request.PerPage);
             result.Items = await _repository.GetAllAsync(query);
             return result;
         }