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
8 years ago
Commit
70d35d5dfc3b13dbb8fe78835d64e9baa0616cc3
1 parent
e8b15759
master
...
6.7.0_0.49
6.7.1_0.49
6.7.4_0.49
6.7.5_0.49
6.8.7_message
6.9.5_msg
6.9.9_invite
V0125_Date
V1115_Date
V1130_Date
V1217_Date
V1230_Date
V6.10.1
V6.10.2
V6.7.9_dev
V6.8.6
V6.8.7
V6.8.7_upgrades
V6.8.9
V6.9.1
V6.9.2
V6.9.3
V6.9.5
V6.9.6
V6.9.6_Alliance
V6.9.7
V6.9.8
V6.9.8_shoudan
V6.9.9
V9.30_Date
exception
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
6.9.8
6.9.7
6.9.6
6.9.4
6.9.2
6.9.1
6.8.9
6.8.8
6.8.4
6.8.3
6.8.2
6.7.9
6.7.8
6.7.7
6.6.4
5.5.1
v6.7.5
v6.7.1
v6.2.0
v6.1.0
v5.6.2
v5.6.0
v5.5.2
v5.5.0
V6.8.6
V6.8.5
V6.8.1
修改下拉刷新android专用和重复background。review by luliang。
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
9 deletions
js/common/components/YH_PtrRefresh.android.js
js/common/components/YH_PtrRefresh.js
js/message/components/list/MessageListOrderCell.js
js/common/components/YH_PtrRefresh.android.js
0 → 100644
View file @
70d35d5
/**
* Description:
*
* Author: Bruce.Lu
* Version: 1.0
* Created on 2017/2/23.
*/
import
React
from
'react'
;
import
ReactNative
from
'react-native'
;
let
{
requireNativeComponent
,
View
}
=
ReactNative
;
let
YH_PtrRefreshView
=
requireNativeComponent
(
'YH_PtrRefresh'
,
null
);
export
default
class
YH_PtrRefresh
extends
React
.
Component
{
static
propTypes
=
{
...
View
.
propTypes
// 包含默认的View的属性
};
constructor
(
props
)
{
super
(
props
);
}
render
()
{
return
<
YH_PtrRefreshView
{...
this
.
props
}
data
=
{
this
.
props
.
data
}
/>
;
}
}
...
...
js/common/components/YH_PtrRefresh.js
View file @
70d35d5
...
...
@@ -8,13 +8,6 @@
import
React
from
'react'
;
import
ReactNative
from
'react-native'
;
let
{
requireNativeComponent
,
View
}
=
ReactNative
;
let
YH_PtrRefreshView
=
requireNativeComponent
(
'YH_PtrRefresh'
,
null
);
export
default
class
YH_PtrRefresh
extends
React
.
Component
{
static
propTypes
=
{
...
...
@@ -26,6 +19,6 @@ export default class YH_PtrRefresh extends React.Component {
}
render
()
{
return
<
YH_PtrRefreshView
{...
this
.
props
}
data
=
{
this
.
props
.
data
}
/>
;
return
null
;
}
}
...
...
js/message/components/list/MessageListOrderCell.js
View file @
70d35d5
...
...
@@ -119,7 +119,6 @@ let styles = StyleSheet.create({
marginLeft
:
15
,
marginTop
:
10
,
marginBottom
:
10
,
backgroundColor
:
'transparent'
,
width
:
46
,
height
:
60
,
backgroundColor
:
'white'
...
...
Please
register
or
login
to post a comment