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
linweijiong
jinfa-platform
Commits
b031b8b8
Commit
b031b8b8
authored
Jul 03, 2021
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复 编辑状态 分页数据未展示 的问题
parent
ad27e281
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
index.tsx
...nents/FlowRuleForm/components/ComingConfigTable/index.tsx
+6
-2
No files found.
src/pages/member/memberFlowRule/components/FlowRuleForm/components/ComingConfigTable/index.tsx
View file @
b031b8b8
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Author: XieZhiXiong
* @Date: 2021-05-28 15:24:56
* @Date: 2021-05-28 15:24:56
* @LastEditors: XieZhiXiong
* @LastEditors: XieZhiXiong
* @LastEditTime: 2021-0
6-18 15:57:10
* @LastEditTime: 2021-0
7-03 14:10:53
* @Description:
* @Description:
*/
*/
import
React
,
{
useState
}
from
'react'
;
import
React
,
{
useState
}
from
'react'
;
...
@@ -92,7 +92,11 @@ const ComingConfigTable = (props) => {
...
@@ -92,7 +92,11 @@ const ComingConfigTable = (props) => {
};
};
const
filtered
=
keyword
?
value
.
filter
((
item
)
=>
item
.
fieldLocalName
.
includes
(
keyword
))
:
[...
value
];
const
filtered
=
keyword
?
value
.
filter
((
item
)
=>
item
.
fieldLocalName
.
includes
(
keyword
))
:
[...
value
];
const
dataSource
=
pagingArr
(
page
,
size
,
filtered
);
let
dataSource
=
filtered
;
if
(
!
editable
)
{
dataSource
=
pagingArr
(
page
,
size
,
filtered
);
}
return
(
return
(
<
div
className=
{
styles
[
'config-table'
]
}
>
<
div
className=
{
styles
[
'config-table'
]
}
>
...
...
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