Commit 62644adf authored by 成旭东's avatar 成旭东

fix

parent 7598e2b6
Pipeline #28023 passed with stage
in 3 minutes 49 seconds
......@@ -497,7 +497,7 @@ const VideoList: React.FC<any> = (props) => {
title: '楼盘备案名',
dataIndex: 'project',
key: 'project',
width: 100,
width: 150,
render: (_: any, record: any) => (record.project && record.project.name || '-')
}, {
title: '视频标题',
......@@ -509,13 +509,13 @@ const VideoList: React.FC<any> = (props) => {
title: '视频浏览量',
dataIndex: 'read_num',
key: 'read_num',
width: 100,
width: 150,
render: (text: any) => (text || '0')
}, {
title: '虚拟视频浏览量',
dataIndex: 'virtual_read_num',
key: 'virtual_read_num',
width: 100,
width: 150,
render: (text: any) => (text || '0')
}, {
title: '收藏数',
......@@ -527,7 +527,7 @@ const VideoList: React.FC<any> = (props) => {
title: '虚拟收藏数',
dataIndex: 'virtual_collection_num',
key: 'virtual_collection_num',
width: 100,
width: 150,
render: (text: any) => (text || '0')
}, {
title: '分享次数',
......@@ -539,7 +539,7 @@ const VideoList: React.FC<any> = (props) => {
title: '虚拟分享次数',
dataIndex: 'virtual_share_num',
key: 'virtual_share_num',
width: 100,
width: 150,
render: (text: any) => (text || '0')
}, {
title: '首页推荐',
......@@ -615,7 +615,7 @@ const VideoList: React.FC<any> = (props) => {
columns={projectColumns}
onChange={handleStandardTableChange}
pagination={videoData.pagination}
scroll={{ x: 1310 }}
scroll={{ x: 1560 }}
/>
</Card>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment