|
|
|
@ -21,20 +21,20 @@ class Videostatisticslist extends Component {
|
|
|
|
|
key: 'number',
|
|
|
|
|
align: "center",
|
|
|
|
|
className: 'font-14',
|
|
|
|
|
width: '90px',
|
|
|
|
|
width: '100px',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span style={{width: '90px'}}>{record.number}</span>
|
|
|
|
|
<span style={{width: '100px'}}>{record.number}</span>
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '视频名称',
|
|
|
|
|
dataIndex: 'title',
|
|
|
|
|
key: 'title',
|
|
|
|
|
align: "center",
|
|
|
|
|
className: 'font-14 maxnamewidth150s ',
|
|
|
|
|
width: '150px',
|
|
|
|
|
align: "left",
|
|
|
|
|
className: 'font-14 width200s widh150wpos',
|
|
|
|
|
width:200,
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<div style={{width: '150px'}} className="maxnamewidth150s textalignlefts">
|
|
|
|
|
<div className="maxnamewidth200ss textalignlefts" style={{ wordWrap: 'break-word', wordBreak: 'break-word' }}>
|
|
|
|
|
<script>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
@ -49,7 +49,7 @@ class Videostatisticslist extends Component {
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<a className="maxnamewidth150s textalignlefts" style={{
|
|
|
|
|
<a className="maxnamewidth200ss textalignlefts" style={{
|
|
|
|
|
color:"#333333"
|
|
|
|
|
}} title={record.title}>{record.title}</a>
|
|
|
|
|
|
|
|
|
@ -57,16 +57,16 @@ class Videostatisticslist extends Component {
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '观看人数(人)',
|
|
|
|
|
title: '观看人数',
|
|
|
|
|
dataIndex: 'people_num',
|
|
|
|
|
key: 'people_num',
|
|
|
|
|
align: "center",
|
|
|
|
|
className: 'font-14',
|
|
|
|
|
width: '98px',
|
|
|
|
|
className: 'font-14 width150s',
|
|
|
|
|
sorter: true,
|
|
|
|
|
sortDirections: sortDirections,
|
|
|
|
|
width:150,
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span style={{width: '98px'}}>{record.people_num}</span>
|
|
|
|
|
<span>{record.people_num}</span>
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
@ -74,12 +74,12 @@ class Videostatisticslist extends Component {
|
|
|
|
|
dataIndex: 'total_time',
|
|
|
|
|
key: 'total_time',
|
|
|
|
|
align: "center",
|
|
|
|
|
className: 'font-14 maxnamewidth100s ',
|
|
|
|
|
width: '100px',
|
|
|
|
|
className: 'font-14 width100s ',
|
|
|
|
|
sorter: true,
|
|
|
|
|
sortDirections: sortDirections,
|
|
|
|
|
width:100,
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<div style={{width: '100px'}} className="maxnamewidth100s textalignrights">
|
|
|
|
|
<div className="maxnamewidth100s ">
|
|
|
|
|
<script>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
@ -94,7 +94,7 @@ class Videostatisticslist extends Component {
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<a className="maxnamewidth100s textalignrights" style={{
|
|
|
|
|
<a className="maxnamewidth100s " style={{
|
|
|
|
|
color:"#333333"
|
|
|
|
|
}} title={record.total_time}>{record.total_time}</a>
|
|
|
|
|
|
|
|
|
@ -106,10 +106,10 @@ class Videostatisticslist extends Component {
|
|
|
|
|
dataIndex: 'user_name',
|
|
|
|
|
key: 'user_name',
|
|
|
|
|
align: "center",
|
|
|
|
|
className: 'font-14 maxnamewidth100s',
|
|
|
|
|
width: '100px',
|
|
|
|
|
className: 'font-14 width150s',
|
|
|
|
|
width:150,
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span style={{width: '100px'}} className="maxnamewidth100s">
|
|
|
|
|
<span className="maxnamewidth150ss">
|
|
|
|
|
<script>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
@ -124,7 +124,7 @@ class Videostatisticslist extends Component {
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<a className="maxnamewidth100s" style={{
|
|
|
|
|
<a className="maxnamewidth150ss" style={{
|
|
|
|
|
color:"#333333"
|
|
|
|
|
}} title={record.user_name}>{record.user_name}</a>
|
|
|
|
|
|
|
|
|
@ -137,9 +137,8 @@ class Videostatisticslist extends Component {
|
|
|
|
|
key: 'id',
|
|
|
|
|
align: "center",
|
|
|
|
|
className: 'font-14',
|
|
|
|
|
width: '50px',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span style={{width: '50px',color:'#5091FF'}} className="xiaoshou" onClick={()=>this.props.tisticsbools(true,record.id,record.title)}>详情</span>
|
|
|
|
|
<span style={{color:'#5091FF'}} className="xiaoshou" onClick={()=>this.props.tisticsbools(true,record.id,record.title)}>详情</span>
|
|
|
|
|
),
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|