|
|
|
@ -488,7 +488,14 @@ class MessagSub extends Component {
|
|
|
|
|
case "SubjectStartCourse":
|
|
|
|
|
return window.open(`/paths/${item.container_id}`);
|
|
|
|
|
case "ResubmitStudentWork":
|
|
|
|
|
return window.open(`/courses/${item.belong_container_id}/graduation_tasks/${item.container_id}/appraise`);
|
|
|
|
|
if (item.homework_type === "normal") {
|
|
|
|
|
//普通作业
|
|
|
|
|
return window.open(`/courses/${item.belong_container_id}/common_homeworks/${item.parent_container_id}/${item.container_id}/appraise`);
|
|
|
|
|
}
|
|
|
|
|
if (item.homework_type === "group") {
|
|
|
|
|
//分组作业
|
|
|
|
|
return window.open(`/courses/${item.belong_container_id}/group_homeworks/${item.parent_container_id}/${item.container_id}/appraise`);
|
|
|
|
|
}
|
|
|
|
|
case "AdjustScore":
|
|
|
|
|
//belong_container_id course的id
|
|
|
|
|
return window.open(`/courses/${item.belong_container_id}/graduation_tasks/${item.parent_container_id}`);
|
|
|
|
|