|
|
|
@ -375,19 +375,19 @@ class CoursesBanner extends Component {
|
|
|
|
|
}
|
|
|
|
|
addTeacher = (isTeacher) => {
|
|
|
|
|
this.setState({ isTeacher }, () => {
|
|
|
|
|
this.refs.addTeacherModal.setVisible(true)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
this.refs.addTeacherModal.setVisible(true)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
addStudent = () => {
|
|
|
|
|
this.refs.addStudentModal.setVisible(true)
|
|
|
|
|
this.refs.addStudentModal.setVisible(true)
|
|
|
|
|
}
|
|
|
|
|
addTeacherSuccess = (params) => {
|
|
|
|
|
trigger('addTeacherSuccess', JSON.stringify(params))
|
|
|
|
|
this.updatabanner()
|
|
|
|
|
}
|
|
|
|
|
addStudentSuccess = (params) => {
|
|
|
|
|
trigger('addStudentSuccess', JSON.stringify(params))
|
|
|
|
|
trigger('addStudentSuccess', JSON.stringify(params))
|
|
|
|
|
this.updatabanner()
|
|
|
|
|
}
|
|
|
|
|
//退出课堂按钮
|
|
|
|
@ -728,7 +728,12 @@ class CoursesBanner extends Component {
|
|
|
|
|
<Breadcrumb.Item className={"pointer"}>
|
|
|
|
|
<Tooltip visible={coursedata.teacher_applies_count===undefined?false:coursedata.teacher_applies_count>0?true:false}
|
|
|
|
|
placement="topLeft"
|
|
|
|
|
title={<pre>{coursedata.teacher_applies_count===undefined?"":coursedata.teacher_applies_count>0?<span>您有{coursedata.teacher_applies_count}条新的加入申请<a className={"daishenp"} onClick={()=>this.setHistoryFun("/courses/"+this.props.match.params.coursesId+"/teachers?tab=2")}>待审批</a></span>:""}</pre>}>
|
|
|
|
|
title={<pre>{coursedata.teacher_applies_count===undefined?"":coursedata.teacher_applies_count>0?<span>您有{coursedata.teacher_applies_count}条新的加入申请<a className={"daishenp"} onClick={()=>this.setHistoryFun("/courses/"+this.props.match.params.coursesId+"/teachers?tab=2")}>
|
|
|
|
|
<span style={{
|
|
|
|
|
color:"#FFA804"
|
|
|
|
|
}}>
|
|
|
|
|
待审批
|
|
|
|
|
</span></a></span>:""}</pre>}>
|
|
|
|
|
<span className="color-grey-c font-16" onClick={()=>this.setHistoryFun("/courses/"+this.props.match.params.coursesId+"/teachers")}>
|
|
|
|
|
<span className={"mr10"}>教师</span>
|
|
|
|
|
<span className={"mr10"}>{coursedata.teacher_count}</span>
|
|
|
|
|