Explorar o código

暂存箱列表分页功能调整

DuGuYang hai 1 ano
pai
achega
9593b0c2ca
Modificáronse 1 ficheiros con 11 adicións e 2 borrados
  1. 11 2
      Areas/Api/Controllers/v1/MainServer/MerchantInfoController.cs

+ 11 - 2
Areas/Api/Controllers/v1/MainServer/MerchantInfoController.cs

@@ -620,8 +620,17 @@ namespace MySystem.Areas.Api.Controllers.v1
             int PageSize = int.Parse(function.CheckInt(data["PageSize"].ToString()));
             int PageNum = int.Parse(function.CheckInt(data["PageNum"].ToString()));
             List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
-            List<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId && m.Sort == 0).ToList();
-            foreach (var subdata in query)
+            IQueryable<MerchantInfo> query = maindb.MerchantInfo.Where(m => m.UserId == UserId && m.Sort == 0);
+            if (PageNum == 1)
+            {
+                query = query.Take(PageSize);
+            }
+            else
+            {
+                int skipNum = PageSize * (PageNum - 1);
+                query = query.Skip(skipNum).Take(PageSize);
+            }
+            foreach (var subdata in query.ToList())
             {
                 Dictionary<string, object> curData = new Dictionary<string, object>();
                 curData.Add("Name", subdata.Name); //名称