hookehuyr

fix: 将任务列表获取限制从100增加到1000

...@@ -99,7 +99,7 @@ const fetchTaskList = async () => { ...@@ -99,7 +99,7 @@ const fetchTaskList = async () => {
99 try { 99 try {
100 const res = await getTeacherTaskListAPI({ 100 const res = await getTeacherTaskListAPI({
101 group_id: props.groupId, 101 group_id: props.groupId,
102 - limit: 100, 102 + limit: 1000,
103 page: 0 103 page: 0
104 }) 104 })
105 105
......