@@ -674,7 +674,7 @@ namespace IRaCIS.Core.Application.Service
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpPost]
|
||||
public async Task<PageOutput<PreviewTheReadingListOutDto>> GetPreviewTheReadingList(PreviewTheReadingListInDto inDto)
|
||||
public async Task<(PageOutput<PreviewTheReadingListOutDto>,object)> GetPreviewTheReadingList(PreviewTheReadingListInDto inDto)
|
||||
{
|
||||
|
||||
// 这里还需要获取到之前已经添加的
|
||||
@@ -791,7 +791,9 @@ namespace IRaCIS.Core.Application.Service
|
||||
PageIndex = inDto.PageIndex,
|
||||
TotalCount = totalCount,
|
||||
};
|
||||
return result;
|
||||
return (result,new {
|
||||
NeedReminder=inDto.Id==null,
|
||||
});
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user