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
chenl
2017-02-28 16:54:41 +0800
Commit
5f7a8f3ca9bada761264957842f756373f070a33
1 parent
ee2effd3
移除了一些打印log。review by liben。
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
5 deletions
js/blk/components/brand/IndexListView.js
js/community/containers/MessageCenterContainer.js
js/redPersonBrand/components/redBrand/Video.js
js/search/containers/SearchContainer.js
js/search/reducers/search/searchActions.js
js/blk/components/brand/IndexListView.js
View file @
5f7a8f3
...
...
@@ -43,7 +43,6 @@ export default class IndexListView extends React.Component {
if
(
name
==
'0'
)
{
name
=
'0-9'
;
}
console
.
log
(
name
);
this
.
props
.
onLetterPress
&&
this
.
props
.
onLetterPress
(
i
,
name
);
break
;
}
...
...
js/community/containers/MessageCenterContainer.js
View file @
5f7a8f3
...
...
@@ -69,7 +69,6 @@ class MessageCenterContainer extends React.Component {
}
_onPressPost
(
id
)
{
console
.
log
(
'post id = '
+
id
);
if
(
id
)
{
this
.
props
.
actions
.
goToPost
(
id
);
}
...
...
js/redPersonBrand/components/redBrand/Video.js
View file @
5f7a8f3
...
...
@@ -32,7 +32,6 @@ export default class Video extends React.Component {
}
render
()
{
console
.
log
(
width
);
let
{
resource
,
videoCounts
}
=
this
.
props
;
if
(
!
resource
)
{
return
null
;
...
...
js/search/containers/SearchContainer.js
View file @
5f7a8f3
...
...
@@ -106,7 +106,6 @@ class SearchContainer extends Component {
}
_onPressProduct
(
data
,
index
=
'0'
)
{
console
.
log
(
index
)
ReactNative
.
NativeModules
.
YH_SearchHelper
.
goToProductDetail
(
data
.
toJS
(),
index
,
this
.
props
.
search
.
productList
.
filter
);
}
...
...
js/search/reducers/search/searchActions.js
View file @
5f7a8f3
...
...
@@ -33,7 +33,6 @@ const {
export
function
searchKeywordChanged
(
keyword
)
{
return
(
dispatch
,
getState
)
=>
{
console
.
log
(
keyword
)
let
status
=
0
;
if
(
keyword
)
{
status
=
1
;
...
...
Please
register
or
login
to post a comment