Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mr-julyedu
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
baiguangyao
mr-julyedu
Commits
6c118570
Commit
6c118570
authored
Nov 07, 2019
by
wangshuo
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '11-11-formal' into dev
parents
9ab88978
3dd04d46
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
12 deletions
+20
-12
src/components/blessingGetPrize/index.js
+18
-10
src/components/blessingPreheat/formal-draw/index.js
+2
-2
No files found.
src/components/blessingGetPrize/index.js
View file @
6c118570
...
...
@@ -27,17 +27,25 @@ class BlessingGetPrize extends Component {
}
componentDidMount
()
{
http
.
get
(
`
${
API
.
home
}
/sys/lottery_result?id=
${
getParam
(
'id'
)}
`
).
then
(
res
=>
{
const
{
code
,
msg
,
data
}
=
res
.
data
;
if
(
code
===
200
)
{
this
.
setState
({
...
data
.
info
,
prize_data
:
data
.
prize_data
.
slice
(
0
,
6
),
})
}
else
{
Toast
.
info
(
msg
);
const
_this
=
this
;
setTimeout
(
function
(){
const
{
history
,
uid
}
=
_this
.
props
;
if
(
!
uid
)
{
history
.
push
(
'/passport'
)
}
else
{
http
.
get
(
`
${
API
.
home
}
/sys/lottery_result?id=
${
getParam
(
'id'
)}
`
).
then
(
res
=>
{
const
{
code
,
msg
,
data
}
=
res
.
data
;
if
(
code
===
200
)
{
_this
.
setState
({
...
data
.
info
,
prize_data
:
data
.
prize_data
.
slice
(
0
,
6
),
})
}
else
{
Toast
.
info
(
msg
);
}
});
}
});
}
,
100
);
}
showAddress
=
(
bool
)
=>
{
...
...
src/components/blessingPreheat/formal-draw/index.js
View file @
6c118570
...
...
@@ -33,10 +33,10 @@ class FormalDraw extends Component {
http
.
get
(
`
${
API
.
home
}
/sys/activity/prize_data`
)
.
then
(
res
=>
{
const
{
data
,
code
,
msg
}
=
res
.
data
const
oneDay
=
data
.
list
.
filter
(
item
=>
item
.
date
===
data
.
value
.
today
)
const
activeIndex
=
oneDay
[
0
][
'son'
].
findIndex
(
item
=>
item
.
status
==
3
)
if
(
code
==
200
)
{
const
{
today
}
=
data
.
value
const
oneDay
=
data
.
list
.
filter
(
item
=>
item
.
date
===
data
.
value
.
today
)
const
activeIndex
=
oneDay
[
0
][
'son'
].
findIndex
(
item
=>
item
.
status
==
3
)
this
.
setState
({
tabs
:
data
.
list
.
map
(
item
=>
({
title
:
item
.
date
})),
today
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment