|
|
|
@ -604,6 +604,7 @@ class studentsList extends Component{
|
|
|
|
|
}
|
|
|
|
|
const isAdminOrTeacher = this.props.isAdminOrTeacher()
|
|
|
|
|
const hasGraduationModule = this.hasGraduationModule()
|
|
|
|
|
const coursesId = this.props.match.params.coursesId
|
|
|
|
|
|
|
|
|
|
return(
|
|
|
|
|
<React.Fragment>
|
|
|
|
@ -624,7 +625,10 @@ class studentsList extends Component{
|
|
|
|
|
></AddAdminModal>
|
|
|
|
|
|
|
|
|
|
<Titlesearchsection
|
|
|
|
|
title={"教师列表"}
|
|
|
|
|
title={<React.Fragment>
|
|
|
|
|
<span>教师列表</span>
|
|
|
|
|
{coursesId == '1309' && <span style={{color: '#848484', fontSize: '14px', marginLeft: '10px'}}>(示例课堂,部分成员不可见)</span>}
|
|
|
|
|
</React.Fragment>}
|
|
|
|
|
searchValue={ searchValue }
|
|
|
|
|
onInputSearchChange={this.onInputSearchChange}
|
|
|
|
|
showSearchInput={total_count >= 10}
|
|
|
|
@ -641,6 +645,7 @@ class studentsList extends Component{
|
|
|
|
|
<Menu.Item key="1">已审批({total_count})</Menu.Item>
|
|
|
|
|
<Menu.Item key="2">待审批({apply_size})</Menu.Item>
|
|
|
|
|
</Menu>
|
|
|
|
|
{/* */}
|
|
|
|
|
</div> :
|
|
|
|
|
(!!total_count ? <ColorCountText count={total_count} name="个教师"></ColorCountText> : '')
|
|
|
|
|
}
|
|
|
|
|