Toggle navigation
Toggle navigation
This project
Loading...
Sign in
mobile
/
YH_RNComponent
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
陈林
6 years ago
Commit
7758d3788157e85861d6221f75f321ef468b8dea
1 parent
58454b4b
master
...
6.9.9_invite
V6.10.1
V6.10.2
V6.9.7
V6.9.8
V6.9.9
feature/rn_update61
gerry/v6.9.14_panicBuying
gerry/v6.9.16_bugfixed
v6.10.0
v6.9.10
v6.9.11
v6.9.12
v6.9.13
v6.9.14
v6.9.16
v6.9.17
v6.9.19
v6.9.20
v6.9.21
v6.9.22
v6.9.24
修复新品到着tab切换不刷新的问题。review by 孙凯
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
js/newArrival/components/newArrival/NewArrivalCell.js
js/newArrival/components/newArrival/NewArrivalCell.js
View file @
7758d37
...
...
@@ -30,8 +30,8 @@ export default class NewArrivalCell extends Component {
shouldComponentUpdate
(
nextProps
){
if
(
Immutable
.
is
(
nextProps
.
rowData
,
this
.
props
.
rowData
)
&&
nextProps
.
index
,
this
.
props
.
index
&&
nextProps
.
similarIndex
,
this
.
props
.
similarIndex
)
{
&&
nextProps
.
index
==
this
.
props
.
index
&&
nextProps
.
similarIndex
==
this
.
props
.
similarIndex
)
{
return
false
;
}
else
{
return
true
;
...
...
Please
register
or
login
to post a comment