diff --git a/public/react/src/modules/courses/members/studentsList.js b/public/react/src/modules/courses/members/studentsList.js
index 363d06c54..6780948ef 100644
--- a/public/react/src/modules/courses/members/studentsList.js
+++ b/public/react/src/modules/courses/members/studentsList.js
@@ -36,8 +36,10 @@ const buildColumns = (that) => {
key: 'login',
align:'center',
className:"color-grey-6",
- render: (name, record) => {
- return {name}
+ render: (login, record) => {
+ return 10 ? login : ''}
+ >{login}
}
}, {
title: '姓名',
@@ -57,8 +59,8 @@ const buildColumns = (that) => {
align:'center',
className:"color-grey-6",
render: (student_id, record) => {
- return {student_id}
+ return 10 ? student_id : ''}
+ style={{maxWidth: '160px'}} >{student_id}
}
}];
if (course_groups && course_groups.length) {