hookehuyr

fix(StudyCoursePage): 修复检查任务列表长度时的引用错误

...@@ -415,7 +415,7 @@ const handleCheckInSubmit = async () => { ...@@ -415,7 +415,7 @@ const handleCheckInSubmit = async () => {
415 }; 415 };
416 416
417 const goToCheckin = () => { 417 const goToCheckin = () => {
418 - if(!task_list.length) { 418 + if(!task_list.value.length) {
419 showToast('暂无打卡任务'); 419 showToast('暂无打卡任务');
420 return; 420 return;
421 } 421 }
......