diff --git a/public/react/src/context/EvaluateSuccessEffectDisplay.js b/public/react/src/context/EvaluateSuccessEffectDisplay.js index 8390ca77d..f09b6d2f2 100644 --- a/public/react/src/context/EvaluateSuccessEffectDisplay.js +++ b/public/react/src/context/EvaluateSuccessEffectDisplay.js @@ -51,16 +51,16 @@ class EvaluateSuccessEffectDisplay extends Component {
- Icon + {orignal_picture[0] && Icon}
- Icon + {user_picture[0] && Icon}
- Icon + { answer_picture[0] && Icon }
diff --git a/public/react/src/context/TPIContextProvider.js b/public/react/src/context/TPIContextProvider.js index 3cb725c34..938d3b60c 100644 --- a/public/react/src/context/TPIContextProvider.js +++ b/public/react/src/context/TPIContextProvider.js @@ -896,7 +896,7 @@ pop_box_new(htmlvalue, 480, 182); {/* mb20 加了有样式问题 */} { this.isSingleButton ?
+ style={{ textAlign: 'center', 'margin-bottom': '14px'}}> 知道啦 diff --git a/public/react/src/modules/courses/busyWork/CommonWorkList.js b/public/react/src/modules/courses/busyWork/CommonWorkList.js index 3dd3f8d7d..67da6c549 100644 --- a/public/react/src/modules/courses/busyWork/CommonWorkList.js +++ b/public/react/src/modules/courses/busyWork/CommonWorkList.js @@ -58,8 +58,9 @@ function buildColumns(that, student_works) { const isAdminOrStudent = that.props.isAdminOrStudent() const isStudent = that.props.isStudent() const isNiPing = homework_status && homework_status.indexOf('匿评中') != -1 + const isAppeal = homework_status && homework_status.indexOf('申诉中') != -1 // https://www.trustie.net/issues/21450 分组作业作品列表 学时视角,匿评阶段的列表显示信息不正确 - const niPingAndIsStudent = isStudent && isNiPing + const niPingAndIsStudent = isStudent && (isNiPing || isAppeal) let columns = [{ width: 60, diff --git a/public/react/src/modules/courses/busyWork/CommonWorkSetting.js b/public/react/src/modules/courses/busyWork/CommonWorkSetting.js index 56eabb375..056f58574 100644 --- a/public/react/src/modules/courses/busyWork/CommonWorkSetting.js +++ b/public/react/src/modules/courses/busyWork/CommonWorkSetting.js @@ -1149,7 +1149,8 @@ class CommonWorkSetting extends Component{
结束时间: - + {/* + */} // { // const end_time = this.state.end_time @@ -1172,7 +1174,7 @@ class CommonWorkSetting extends Component{ // } /> - + (学生“延时”提交作品的时间截点) {
{latetimetype}
}
diff --git a/public/react/src/modules/courses/busyWork/NewWork.js b/public/react/src/modules/courses/busyWork/NewWork.js index 462bebaa1..3bb77dfb5 100644 --- a/public/react/src/modules/courses/busyWork/NewWork.js +++ b/public/react/src/modules/courses/busyWork/NewWork.js @@ -38,7 +38,8 @@ class NewWork extends Component{ } } fetchCourseData = (courseId) => { - const url = `/courses/${courseId}/homework_commons/new.json?type=1` + const isGroup = this.props.isGroup() + const url = `/courses/${courseId}/homework_commons/new.json?type=${isGroup ? 3 : 1}` axios.get(url, { }) .then((response) => { @@ -369,7 +370,8 @@ class NewWork extends Component{

*/}