Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
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
黄庭坚
jinfa-platform
Commits
075a6005
Commit
075a6005
authored
Sep 27, 2021
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复 totalCount 没有报错的问题
parent
65760210
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
index.tsx
src/components/FlowRecords/index.tsx
+3
-3
No files found.
src/components/FlowRecords/index.tsx
View file @
075a6005
...
...
@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2021-05-18 18:30:50
* @LastEditors: XieZhiXiong
* @LastEditTime: 2021-0
6-04 13:48
:09
* @LastEditTime: 2021-0
9-27 10:53
:09
* @Description: 内、外部流传记录
*/
import
React
,
{
useEffect
,
useState
}
from
'react'
;
...
...
@@ -220,7 +220,7 @@ const FlowRecords: React.FC<IProps> = (props: IProps) => {
?
{
current
:
outerPage
,
pageSize
:
outerSize
,
total
:
outerList
.
totalCount
,
total
:
outerList
?
.
totalCount
,
}
:
null
)
}
...
...
@@ -238,7 +238,7 @@ const FlowRecords: React.FC<IProps> = (props: IProps) => {
?
{
current
:
innerPage
,
pageSize
:
innerSize
,
total
:
innerList
.
totalCount
,
total
:
innerList
?
.
totalCount
,
}
:
null
)
}
...
...
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