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
Kennaki
8 years ago
Commit
478ef510dc920760bd62eb402f4dfe5a6a1998ab
1 parent
0983d24a
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
5.4.1
5.4
v6.7.5
v6.7.1
v6.2.0
v6.1.0
v5.6.2
v5.6.0
v5.5.2
v5.5.0
v5.4.1
v5.4.0
ios-5.4.0
V6.8.6
V6.8.5
V6.8.1
修复新品到着文章阅读数超出范围的UI问题。
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
js/newArrival/components/newArrival/ArticleCell.js
js/newArrival/components/newArrival/ArticleCell.js
View file @
478ef51
...
...
@@ -61,7 +61,7 @@ export default class ProductListCell extends Component {
<
Image
style
=
{
styles
.
clockImage
}
source
=
{
require
(
'../../image/time_ic.png'
)}
/
>
<
Text
style
=
{
styles
.
text
}
>
{
publish_time
}
<
/Text
>
<
Image
style
=
{
styles
.
eyeImage
}
source
=
{
require
(
'../../image/eye_ic.png'
)}
/
>
<
Text
style
=
{
styles
.
text
}
>
{
browse
}{
show10K
?
'万'
:
''
}
<
/Text
>
<
Text
style
=
{
styles
.
eyeText
}
numberOfLines
=
{
1
}
>
{
browse
}{
show10K
?
'万'
:
''
}
<
/Text
>
<
/View
>
<
/View
>
...
...
@@ -96,6 +96,8 @@ let priceMarginTop = Math.ceil(-4 * DEVICE_WIDTH_RATIO);
let
gpSoldOutImageHeight
=
Math
.
ceil
(
25
*
DEVICE_WIDTH_RATIO
);
let
tagHeight
=
Math
.
ceil
(
14
*
DEVICE_WIDTH_RATIO
);
let
footerWidth
=
Platform
.
OS
===
'ios'
?
rowWidth
-
20
:
rowWidth
-
16
;
let
styles
=
StyleSheet
.
create
({
container
:
{
width
:
rowWidth
,
...
...
@@ -136,7 +138,7 @@ let styles = StyleSheet.create({
lineHeight
:
22
,
},
footContainer
:
{
width
:
Platform
.
OS
===
'ios'
?
rowWidth
-
20
:
rowWidth
-
16
,
width
:
footerWidth
,
height
:
18
,
flexDirection
:
'row'
,
alignItems
:
'center'
,
...
...
@@ -158,5 +160,12 @@ let styles = StyleSheet.create({
marginLeft
:
5
,
marginRight
:
0
,
},
eyeText
:
{
fontSize
:
10
,
color
:
'white'
,
marginLeft
:
5
,
marginRight
:
0
,
width
:
width
==
320
?
10
:
28
,
},
});
...
...
Please
register
or
login
to post a comment