|
|
@ -139,6 +139,9 @@ namespace TaskManager.Controllers |
|
|
|
for (currentPage = 2; currentPage <= totalPages; currentPage++) |
|
|
|
{ |
|
|
|
PAGE_DTO pageinput = new PAGE_DTO() { Date = date, PageNum = currentPage, IsForce = false }; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Console.WriteLine($"正在请求第 {currentPage} 页..."); |
|
|
|
PagedResponse<ToutputDetial> pageResponse = await GetPageAsync(pageinput); |
|
|
|
if (pageResponse?.Data.Rows != null && pageResponse.Data.Rows.Count > 0) |
|
|
@ -241,7 +244,7 @@ namespace TaskManager.Controllers |
|
|
|
for (currentPage = 2; currentPage <= totalPages; currentPage++) |
|
|
|
{ |
|
|
|
PAGE_DTO pageinput = new PAGE_DTO() { Date = date, PageNum = currentPage, IsForce = true }; |
|
|
|
Console.WriteLine($"正在请求第 {currentPage} 页..."); |
|
|
|
//Console.WriteLine($"正在请求第 {currentPage} 页...");
|
|
|
|
PagedResponse<ToutputDetial> pageResponse = await GetPageAsync(pageinput); |
|
|
|
if (pageResponse?.Data.Rows != null && pageResponse.Data.Rows.Count > 0) |
|
|
|
{ |
|
|
|