}
+ reference_answer === undefined ? '' : ((!attachments || attachments.length == 0) &&
)}
{ attachments && attachments.map((item) => {
return (
diff --git a/public/react/src/modules/courses/busyWork/CommonWorkList.js b/public/react/src/modules/courses/busyWork/CommonWorkList.js
index 28de13fe7..31532f78e 100644
--- a/public/react/src/modules/courses/busyWork/CommonWorkList.js
+++ b/public/react/src/modules/courses/busyWork/CommonWorkList.js
@@ -64,7 +64,9 @@ function buildColumns(that, student_works) {
key: 'id',
render: (text, record, index) => {
return (
-
{(that.state.page - 1) * PAGE_SIZE + index + 1}
+
+ {record.isMine == true ? '我' : (that.state.page - 1) * PAGE_SIZE + index + 1}
+
)},
}, {
title: '姓名',
@@ -547,7 +549,7 @@ class CommonWorkList extends Component{
StudentData=isStudent ? [{ id, user_name, user_login, student_id, group_name, work_status, update_time, teacher_score, teaching_asistant_score, student_score,
ultimate_score, work_score, student_comment_count, appeal_all_count, appeal_deal_count,
late_penalty, absence_penalty, appeal_penalty,
- work_group: '' }] : []
+ work_group: '', isMine: true }] : []
}
let params = this._getRequestParams()
let exportUrl = `/api/homework_commons/${workId}/works_list.zip?${queryString.stringify(params)}`;
diff --git a/public/react/src/modules/courses/common/courseMessage.css b/public/react/src/modules/courses/common/courseMessage.css
index c219df018..fede51ded 100644
--- a/public/react/src/modules/courses/common/courseMessage.css
+++ b/public/react/src/modules/courses/common/courseMessage.css
@@ -40,6 +40,7 @@
.course-message .comment_item_cont:last-child {
/* 作品评阅需要 */
border-bottom: none;
+ padding-bottom: 0px;
}
.course-message .memoMore {
diff --git a/public/react/src/modules/courses/members/studentsList.js b/public/react/src/modules/courses/members/studentsList.js
index d997592ef..9c6254cbd 100644
--- a/public/react/src/modules/courses/members/studentsList.js
+++ b/public/react/src/modules/courses/members/studentsList.js
@@ -46,24 +46,30 @@ const buildColumns = (that) => {
key: 'login',
align:'center',
className:"color-grey-6",
- // render: (name, record) => {
- // return
{name}
- // }
+ render: (name, record) => {
+ return
{name}
+ }
}, {
title: '姓名',
dataIndex: 'name',
key: 'name',
align:'center',
+ width:"10%",
className:"color-grey-6",
render: (name, record) => {
- return
{name}
+ return
{name}
}
}, {
title: '学号',
dataIndex: 'student_id',
key: 'student_id',
align:'center',
- className:"color-grey-6"
+ className:"color-grey-6",
+ render: (student_id, record) => {
+ return
{student_id}
+ }
}, {
title: '分班',
dataIndex: 'course_group_name',