Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mp_estate_client
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mp_estate_backstage
mp_estate_client
Commits
7598e2b6
Commit
7598e2b6
authored
Sep 08, 2020
by
成旭东
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
336176d0
Pipeline
#28020
passed with stage
in 3 minutes 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
7 deletions
+25
-7
index.tsx
src/pages/mpEstate/videoList/index.tsx
+25
-7
No files found.
src/pages/mpEstate/videoList/index.tsx
View file @
7598e2b6
...
...
@@ -137,7 +137,7 @@ const DrawerForm = (props: any) => {
<
Input
/>
</
FormItem
>
<
FormItem
name=
"collection_num"
name=
"
virtual_
collection_num"
label=
"虚拟收藏数"
rules=
{
[
{
...
...
@@ -149,7 +149,7 @@ const DrawerForm = (props: any) => {
<
InputNumber
/>
</
FormItem
>
<
FormItem
name=
"share_num"
name=
"
virtual_
share_num"
label=
"虚拟分享数"
rules=
{
[
{
...
...
@@ -161,7 +161,7 @@ const DrawerForm = (props: any) => {
<
InputNumber
/>
</
FormItem
>
<
FormItem
name=
"read_num"
name=
"
virtual_
read_num"
label=
"虚拟浏览量"
rules=
{
[
{
...
...
@@ -510,19 +510,37 @@ const VideoList: React.FC<any> = (props) => {
dataIndex
:
'read_num'
,
key
:
'read_num'
,
width
:
100
,
render
:
(
text
:
any
)
=>
(
text
||
'-'
)
render
:
(
text
:
any
)
=>
(
text
||
'0'
)
},
{
title
:
'虚拟视频浏览量'
,
dataIndex
:
'virtual_read_num'
,
key
:
'virtual_read_num'
,
width
:
100
,
render
:
(
text
:
any
)
=>
(
text
||
'0'
)
},
{
title
:
'收藏数'
,
dataIndex
:
'collection_num'
,
key
:
'collection_num'
,
width
:
100
,
render
:
(
text
:
any
)
=>
(
text
||
'-'
)
render
:
(
text
:
any
)
=>
(
text
||
'0'
)
},
{
title
:
'虚拟收藏数'
,
dataIndex
:
'virtual_collection_num'
,
key
:
'virtual_collection_num'
,
width
:
100
,
render
:
(
text
:
any
)
=>
(
text
||
'0'
)
},
{
title
:
'分享次数'
,
dataIndex
:
'share_num'
,
key
:
'share_num'
,
width
:
100
,
render
:
(
text
:
any
)
=>
(
text
||
'-'
)
render
:
(
text
:
any
)
=>
(
text
||
'0'
)
},
{
title
:
'虚拟分享次数'
,
dataIndex
:
'virtual_share_num'
,
key
:
'virtual_share_num'
,
width
:
100
,
render
:
(
text
:
any
)
=>
(
text
||
'0'
)
},
{
title
:
'首页推荐'
,
dataIndex
:
'is_recommend'
,
...
...
@@ -597,7 +615,7 @@ const VideoList: React.FC<any> = (props) => {
columns=
{
projectColumns
}
onChange=
{
handleStandardTableChange
}
pagination=
{
videoData
.
pagination
}
scroll=
{
{
x
:
1
0
10
}
}
scroll=
{
{
x
:
1
3
10
}
}
/>
</
Card
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment