|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
import React, {Component} from "react";
|
|
|
|
|
import '../../signin/css/signincdi.css';
|
|
|
|
|
import {Pagination, Table, Menu, Dropdown} from 'antd';
|
|
|
|
|
import {getImageUrl, sortDirections} from 'educoder';
|
|
|
|
|
import {Pagination, Table, Menu, Dropdown,Spin} from 'antd';
|
|
|
|
|
import {getImageUrl, sortDirections,formatSeconds} from 'educoder';
|
|
|
|
|
import axios from 'axios';
|
|
|
|
|
import LoadingSpin from "../../../../common/LoadingSpin";
|
|
|
|
|
import NoneDatas from "../../signin/component/NoneDatas";
|
|
|
|
@ -16,7 +16,7 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
this.state = {
|
|
|
|
|
data: [],
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
limit: 20,
|
|
|
|
|
members_count: 0,
|
|
|
|
|
columnsstu: [
|
|
|
|
|
{
|
|
|
|
@ -38,7 +38,12 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
className: 'font-14 maxnamewidth100s',
|
|
|
|
|
width: '100px',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span style={{width: '100px'}} className="maxnamewidth100s">{record.user_name}</span>
|
|
|
|
|
<span style={{width: '100px'}} className="maxnamewidth100s">
|
|
|
|
|
<a className="maxnamewidth100s" style={{
|
|
|
|
|
color:"#333333"
|
|
|
|
|
}} title={record.user_name}>{record.user_name}</a>
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
@ -63,7 +68,9 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
sorter: true,
|
|
|
|
|
sortDirections: sortDirections,
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span style={{width: '150px'}} className="maxnamewidth150s">{record.total_duration}</span>
|
|
|
|
|
<span style={{width: '150px'}} className="maxnamewidth150s"><a className="maxnamewidth150s" style={{
|
|
|
|
|
color:"#333333"
|
|
|
|
|
}} title={record.total_duration}>{record.total_duration}</a></span>
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
@ -76,7 +83,11 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
sorter: true,
|
|
|
|
|
sortDirections: sortDirections,
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span style={{width: '100px'}} className="maxnamewidth100s">{record.feq}</span>
|
|
|
|
|
<span style={{width: '100px'}} className="maxnamewidth100s">
|
|
|
|
|
<a className="maxnamewidth100s" style={{
|
|
|
|
|
color:"#333333"
|
|
|
|
|
}} title={record.feq}>{record.feq}</a>
|
|
|
|
|
</span>
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
@ -87,7 +98,11 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
className: 'font-14 maxnamewidth100s',
|
|
|
|
|
width: '100px',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span style={{width: '100px', color: '#5091FF'}} className="xiaoshou">{record.start_at}</span>
|
|
|
|
|
<span style={{width: '100px'}} >
|
|
|
|
|
<a className="maxnamewidth100s" style={{
|
|
|
|
|
color:"#333333"
|
|
|
|
|
}} title= {record.start_at}> {record.start_at}</a>
|
|
|
|
|
</span>
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
@ -98,7 +113,11 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
className: 'font-14 maxnamewidth100s',
|
|
|
|
|
width: '100px',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span style={{width: '100px', color: '#5091FF'}} className="xiaoshou">{record.end_at}</span>
|
|
|
|
|
<span style={{width: '100px'}} >
|
|
|
|
|
<a className="maxnamewidth100s" style={{
|
|
|
|
|
color:"#333333"
|
|
|
|
|
}} title= {record.end_at}>{record.end_at}</a>
|
|
|
|
|
</span>
|
|
|
|
|
),
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
@ -183,7 +202,7 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
number: (parseInt(this.state.page) - 1) * parseInt(this.state.limit) + (i + 1),
|
|
|
|
|
user_name: response.data.data[i].user_name,
|
|
|
|
|
is_finished: response.data.data[i].is_finished,
|
|
|
|
|
total_duration: response.data.data[i].total_duration,
|
|
|
|
|
total_duration: response.data.data[i].total_duration?formatSeconds(response.data.data[i].total_duration):0,
|
|
|
|
|
feq: response.data.data[i].feq,
|
|
|
|
|
start_at: response.data.data[i].start_at,
|
|
|
|
|
end_at: response.data.data[i].end_at,
|
|
|
|
@ -385,7 +404,7 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
<Menu>
|
|
|
|
|
<Menu.Item>
|
|
|
|
|
<a onClick={() => this.setcourse_groups(null)}>
|
|
|
|
|
<p className="maxnamewidth200s">全部</p>
|
|
|
|
|
<p className="maxnamewidth200yss">全部</p>
|
|
|
|
|
</a>
|
|
|
|
|
</Menu.Item>
|
|
|
|
|
{
|
|
|
|
@ -395,7 +414,7 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
return (
|
|
|
|
|
<Menu.Item>
|
|
|
|
|
<a onClick={() => this.setcourse_groups(item.id)} key={key}>
|
|
|
|
|
<p className="maxnamewidth200s">{item.name}</p>
|
|
|
|
|
<p className="maxnamewidth200yss">{item.name}</p>
|
|
|
|
|
</a>
|
|
|
|
|
</Menu.Item>
|
|
|
|
|
)
|
|
|
|
@ -409,7 +428,7 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
return (
|
|
|
|
|
<React.Fragment>
|
|
|
|
|
<div className="ws100s">
|
|
|
|
|
<div className="ws100s teacherentrydivs edu-back-white ">
|
|
|
|
|
<div className="ws100s teacherentrydivss edu-back-white ">
|
|
|
|
|
<div className="ws100s sortinxdirection">
|
|
|
|
|
<div className="ws50s sptits">视频名称视频名称…</div>
|
|
|
|
|
<div className="ws50s sptitss xaxisreverseorder font-14" style={{
|
|
|
|
@ -452,15 +471,8 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
{
|
|
|
|
|
loading === true ?
|
|
|
|
|
<div style={{
|
|
|
|
|
minHeight: "400px",
|
|
|
|
|
}} className="ws100s">
|
|
|
|
|
<LoadingSpin></LoadingSpin>
|
|
|
|
|
</div>
|
|
|
|
|
:
|
|
|
|
|
<div className="ws100s ysltableo teacherentrydivs">
|
|
|
|
|
|
|
|
|
|
<div className="ws100s ysltableo mt10">
|
|
|
|
|
{
|
|
|
|
|
data.length === 0 ?
|
|
|
|
|
<div style={{
|
|
|
|
@ -469,17 +481,18 @@ class Videostatisticscomtwo extends Component {
|
|
|
|
|
<NoneDatas></NoneDatas>
|
|
|
|
|
</div>
|
|
|
|
|
:
|
|
|
|
|
<Spin spinning={loading}>
|
|
|
|
|
<Table
|
|
|
|
|
columns={columnsstu}
|
|
|
|
|
dataSource={data}
|
|
|
|
|
pagination={false}
|
|
|
|
|
onChange={this.table1handleChange}
|
|
|
|
|
/>
|
|
|
|
|
</Spin>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|