|
|
|
@ -403,7 +403,8 @@ class CommonWorkList extends Component{
|
|
|
|
|
left_time: {},
|
|
|
|
|
category: {},
|
|
|
|
|
b_order: 'desc',
|
|
|
|
|
searchtypes:false
|
|
|
|
|
searchtypes:false,
|
|
|
|
|
loadingstate:false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
onTablePagination = (page) => {
|
|
|
|
@ -420,9 +421,11 @@ class CommonWorkList extends Component{
|
|
|
|
|
})
|
|
|
|
|
}else{
|
|
|
|
|
this.setState({
|
|
|
|
|
searchtypes:true
|
|
|
|
|
searchtypes:true,
|
|
|
|
|
loadingstate:true
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.fetchList()
|
|
|
|
|
}
|
|
|
|
|
onSearchValueInput = (e) => {
|
|
|
|
@ -482,7 +485,8 @@ class CommonWorkList extends Component{
|
|
|
|
|
if (response.data) {
|
|
|
|
|
this.setState({
|
|
|
|
|
...response.data,
|
|
|
|
|
isSpin:false
|
|
|
|
|
isSpin:false,
|
|
|
|
|
loadingstate:false
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
this.props.initWorkDetailCommonState && this.props.initWorkDetailCommonState( Object.assign({...response.data}, {
|
|
|
|
@ -492,7 +496,8 @@ class CommonWorkList extends Component{
|
|
|
|
|
}).catch((error)=>{
|
|
|
|
|
console.log(error)
|
|
|
|
|
this.setState({
|
|
|
|
|
isSpin:false
|
|
|
|
|
isSpin:false,
|
|
|
|
|
loadingstate:false
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
@ -850,9 +855,9 @@ class CommonWorkList extends Component{
|
|
|
|
|
|
|
|
|
|
<div className={"justify break_full_word new_li edu-back-white course_table_wrap"} style={{minHeight:"480px", marginBottom: '30px'}}>
|
|
|
|
|
<style>{`
|
|
|
|
|
.ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
|
|
|
|
|
top: 72%;}
|
|
|
|
|
}
|
|
|
|
|
// .ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
|
|
|
|
|
// top: 72%;}
|
|
|
|
|
// }
|
|
|
|
|
.singleLine tr.ant-table-row {
|
|
|
|
|
background: #f1f9ff;
|
|
|
|
|
}
|
|
|
|
@ -875,7 +880,7 @@ class CommonWorkList extends Component{
|
|
|
|
|
</Spin>
|
|
|
|
|
:
|
|
|
|
|
<React.Fragment>
|
|
|
|
|
|
|
|
|
|
<Spin tip="正在加载..." spinning={loadingstate}>
|
|
|
|
|
<Table
|
|
|
|
|
className="stageTable"
|
|
|
|
|
dataSource={student_works}
|
|
|
|
@ -883,8 +888,9 @@ class CommonWorkList extends Component{
|
|
|
|
|
showQuickJumper
|
|
|
|
|
pagination={false}
|
|
|
|
|
onChange={this.table1handleChange}
|
|
|
|
|
loading={loadingstate}
|
|
|
|
|
// loading={loadingstate}
|
|
|
|
|
/>
|
|
|
|
|
</Spin>
|
|
|
|
|
</React.Fragment>
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|