|
|
@ -2,6 +2,7 @@ import "../css/Signinstatistics.css"
|
|
|
|
import React,{ Component } from "react";
|
|
|
|
import React,{ Component } from "react";
|
|
|
|
import { Row, Col,Select,Table,Pagination } from 'antd';
|
|
|
|
import { Row, Col,Select,Table,Pagination } from 'antd';
|
|
|
|
import axios from 'axios';
|
|
|
|
import axios from 'axios';
|
|
|
|
|
|
|
|
import LoadingSpin from "../../../../common/LoadingSpin";
|
|
|
|
const { Option } = Select;
|
|
|
|
const { Option } = Select;
|
|
|
|
|
|
|
|
|
|
|
|
class Signedinlist extends Component {
|
|
|
|
class Signedinlist extends Component {
|
|
|
@ -293,7 +294,19 @@ class Signedinlist extends Component {
|
|
|
|
</Col>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</Row>
|
|
|
|
<div className={"backfff mt10"}>
|
|
|
|
<div className={"backfff mt10"}>
|
|
|
|
<Table columns={columns} dataSource={member_attendances} pagination={false} loading={this.state.loading}/>
|
|
|
|
{
|
|
|
|
|
|
|
|
member_attendances&&member_attendances.length===0?
|
|
|
|
|
|
|
|
<div style={{
|
|
|
|
|
|
|
|
minHeight:"400px",
|
|
|
|
|
|
|
|
}}>
|
|
|
|
|
|
|
|
<LoadingSpin></LoadingSpin>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
:
|
|
|
|
|
|
|
|
// loading={this.state.loading}
|
|
|
|
|
|
|
|
<Table columns={columns} dataSource={member_attendances} pagination={false} />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="mb30 clearfix educontent mt40 intermediatecenter">
|
|
|
|
<div className="mb30 clearfix educontent mt40 intermediatecenter">
|
|
|
|