Commit 8ae86737 authored by 黄奎's avatar 黄奎

页面修改

parent e0fce697
......@@ -283,7 +283,7 @@ namespace Edu.Module.Exam
/// <param name="ChapterId">当前章节编号</param>
/// <param name="ReviewChapterId">复习章节编号</param>
/// <returns></returns>
public object GetStudyCourseWords(int CourseId, int ChapterId, int ReviewChapterId)
public object GetStudyCourseWords(int CourseId, int ChapterId, int ReviewChapterId,int Stu_Account_Id)
{
List<object> list = new List<object>();
List<object> reviewList = new List<object>();
......@@ -326,10 +326,18 @@ namespace Edu.Module.Exam
});
}
}
var prepModel = GetStuWordsPrepListModule(new RB_StuWords_Prep_Extend()
{
Stu_Account_Id = Stu_Account_Id,
CourseId = CourseId,
ChapterId = ChapterId,
})?.FirstOrDefault();
return new
{
StudyList = list,
ReviewList = reviewList
ReviewList = reviewList,
StartIndex = prepModel?.StudyNum ?? 0
};
}
......
......@@ -30,7 +30,7 @@ namespace Edu.WebApi.Controllers.Applet
var CourseId = base.ParmJObj.GetInt("CourseId");
var ChapterId = base.ParmJObj.GetInt("ChapterId");
var ReviewChapterId = base.ParmJObj.GetInt("ReviewChapterId");
var list = courseExamModule.GetStudyCourseWords(CourseId, ChapterId, ReviewChapterId);
var list = courseExamModule.GetStudyCourseWords(CourseId, ChapterId, ReviewChapterId,base.AppletUserInfo.Id);
return ApiResult.Success(data: list);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment