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
张丽霞
8 years ago
Commit
3f15106ae0f7a93213306264aa42def5ae665c3c
1 parent
f914b82e
秒杀time,review by redding
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
7 deletions
js/seckill/Seckill.js
js/seckill/components/seckill/Seckill.js
js/seckill/Seckill.js
View file @
3f15106
...
...
@@ -52,12 +52,9 @@ export default function native(platform) {
render
()
{
const
store
=
configureStore
(
getInitialState
());
store
.
dispatch
(
setPlatform
(
platform
));
let
url
=
this
.
props
.
url
;
if
(
url
)
{
let
queryUrl
=
queryString
.
parse
(
url
);
if
(
queryUrl
.
time
)
{
store
.
dispatch
(
setStartTime
(
queryUrl
.
time
));
}
let
time
=
this
.
props
.
time
;
if
(
time
)
{
store
.
dispatch
(
setStartTime
(
time
));
}
if
(
this
.
props
.
contentCode
){
store
.
dispatch
(
setContentCode
(
this
.
props
.
contentCode
));
...
...
js/seckill/components/seckill/Seckill.js
View file @
3f15106
...
...
@@ -262,7 +262,7 @@ let styles = StyleSheet.create({
borderWidth
:
0.5
,
},
descriptionContainer
:
{
marginTop
:
2
0
,
marginTop
:
-
4
0
,
marginBottom
:
50
,
marginLeft
:
15
,
},
...
...
Please
register
or
login
to post a comment