import React, {Component} from "react"; import '../../signin/css/signincdi.css'; import {Progress, message} from 'antd'; import {getImageUrl} from 'educoder'; import axios from 'axios'; //条目 class Videostatisticscom extends Component { //条目组件 constructor(props) { super(props); this.state = {} } componentDidMount() { } componentDidUpdate = (prevProps) => { } render() { return (
视频统计总览
播放数据从2020-03-13 24:00开始统计
观看总人数(人)
{this.props.watch_staticsdata&&this.props.watch_staticsdata.people_num?this.props.watch_staticsdata.people_num:0}
观看总人次(次)
{this.props.watch_staticsdata&&this.props.watch_staticsdata.freq?this.props.watch_staticsdata.freq:0}
总观看时长(时)
{this.props.watch_staticsdata&&this.props.watch_staticsdata.total_duration?this.props.watch_staticsdata.total_duration:0}
) } } export default Videostatisticscom;