{record.student_comment_count &&
{`${record.student_comment_count}名学生进行了匿评`}
}
有效平均分:{record.student_score}分
@@ -334,7 +334,7 @@ const orderMap = {
work_score: 'asc',
student_id: 'asc',
}
-const PAGE_SIZE = 50
+const PAGE_SIZE = 20
// 类似页面 http://localhost:3007/courses/1309/graduation/graduation_tasks/48/76/setting
class CommonWorkList extends Component{
@@ -564,6 +564,19 @@ class CommonWorkList extends Component{
}
})
+ // time_status int 时间对应的状态: 0:未发布,1:提交中,2:补交中,3:匿评中,4:申诉中,5:评阅中,6:已结束
+
+ let timeMsg = '提交剩余时间'
+ if (time_status === 1) {
+
+ } else if (time_status === 2) {
+ timeMsg = '补交剩余时间'
+ } else if (time_status === 3) {
+ timeMsg = '匿评剩余时间'
+ } else if (time_status === 4) {
+ timeMsg = '申诉剩余时间'
+ }
+
// console.log(StudentData)
// console.log(student_works)
return(
@@ -638,7 +651,7 @@ class CommonWorkList extends Component{
(!!commit_count || !!uncommit_count) &&