You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.0 KiB
57 lines
1.0 KiB
import React,{ Component } from "react";
|
|
import '../../css/signincdi.css';
|
|
import axios from 'axios';
|
|
import Teacherentry from "../Teacherentry";
|
|
import NoneDatas from '../NoneDatas';
|
|
import Listjihe from "../../../../question/component/Listjihe";
|
|
|
|
//在线学习
|
|
class Teaccomponent extends Component{
|
|
//教师正在签到
|
|
constructor(props){
|
|
super(props);
|
|
|
|
this.state={
|
|
mydatas:[]
|
|
}
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.setState({
|
|
mydatas:this.props.datas
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentDidUpdate = (prevProps) => {
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
render(){
|
|
let mydatas=this.props.datas?this.props.datas:[];
|
|
return(
|
|
<React.Fragment>
|
|
<div className="ws100s mt20 h500">
|
|
{
|
|
mydatas.length>0?
|
|
mydatas.map((object, index) => {
|
|
return (
|
|
<Teacherentry item={object} key={index} index={index} defaultActiveKey={this.props.defaultActiveKey}{...this.props} {...this.state}></Teacherentry>
|
|
)
|
|
})
|
|
:
|
|
<NoneDatas></NoneDatas>
|
|
}
|
|
</div>
|
|
</React.Fragment>
|
|
)
|
|
}
|
|
}
|
|
export default Teaccomponent;
|