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
44828267
Commit
44828267
authored
Jul 11, 2020
by
zhanghaozhe
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2020-717-formal' into dev
parents
c6cb9747
e3c43726
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
src/components/activity/2020-717/activity/index.js
+3
-3
src/components/detail/group/index.js
+1
-1
src/components/detail/group/togroup.js
+1
-1
src/components/detail/index.js
+1
-1
No files found.
src/components/activity/2020-717/activity/index.js
View file @
44828267
...
...
@@ -582,7 +582,7 @@ class Anniversary2020 extends Component {
const
_auditions
=
auditionShowAll
&&
auditions
.
length
?
auditions
:
auditions
.
slice
(
0
,
4
)
const
_group
=
groupShowAll
&&
group
.
length
?
group
:
group
.
slice
(
0
,
4
)
const
_rankList
=
isShowAllRankList
?
rankList
:
rankList
.
slice
(
0
,
10
)
const
_rankList
=
Array
.
isArray
(
rankList
)
?
isShowAllRankList
?
rankList
:
rankList
.
slice
(
0
,
10
)
:
[]
return
(
<
div
className
=
{
'anniversary-2020'
}
>
...
...
@@ -927,7 +927,7 @@ class Anniversary2020 extends Component {
<
/ul
>
<
/div
>
{
prizeData
.
stage
!==
1
&&
<
table
>
!!
_rankList
.
length
&&
prizeData
.
stage
!==
1
&&
<
table
>
<
thead
>
<
tr
>
<
th
>
名次
<
/th
>
...
...
@@ -938,7 +938,7 @@ class Anniversary2020 extends Component {
<
/thead
>
<
tbody
>
{
!!
_rankList
.
length
&&
_rankList
.
map
((
item
,
index
)
=>
{
_rankList
.
map
((
item
,
index
)
=>
{
return
<
tr
key
=
{
index
}
>
<
td
>
{
...
...
src/components/detail/group/index.js
View file @
44828267
...
...
@@ -116,7 +116,7 @@ class Group extends Component {
day
=
`
${
parseInt
(
date
/
(
3600000
*
24
))}
`
.
padStart
(
2
,
0
)
hours
=
`
${
parseInt
((
date
-
day
*
3600000
*
24
)
/
3600000
)}
`
.
padStart
(
2
,
0
)
minutes
=
`
${
parseInt
((
date
-
day
*
3600000
*
24
-
hours
*
3600000
)
/
60000
)}
`
.
padStart
(
2
,
0
)
return
`
${
day
}
:
${
hours
}
:
${
minutes
}
`
;
return
`
${
day
}
天
${
hours
}
时
${
minutes
}
分
`
;
}
else
{
hours
=
`
${
parseInt
(
date
/
(
60
*
60
*
1000
))}
`
.
padStart
(
2
,
0
);
minutes
=
`
${
parseInt
((
date
-
hours
*
3600000
)
/
60000
)}
`
.
padStart
(
2
,
0
);
...
...
src/components/detail/group/togroup.js
View file @
44828267
...
...
@@ -76,7 +76,7 @@ class ToGroup extends Component {
hours
=
`
${
parseInt
((
date
-
day
*
3600000
*
24
)
/
3600000
)}
`
.
padStart
(
2
,
0
)
minutes
=
`
${
parseInt
((
date
-
day
*
3600000
*
24
-
hours
*
3600000
)
/
60000
)}
`
.
padStart
(
2
,
0
)
this
.
setState
({
countdown
:
`
${
day
}
:
${
hours
}
:
${
minutes
}
`
countdown
:
`
${
day
}
天
${
hours
}
时
${
minutes
}
分
`
})
}
else
{
hours
=
`
${
parseInt
(
date
/
(
60
*
60
*
1000
))}
`
.
padStart
(
2
,
0
)
...
...
src/components/detail/index.js
View file @
44828267
...
...
@@ -426,7 +426,7 @@ class Detail extends Component {
// seconds = `${parseInt((date - day * 3600000 * 24 - hours * 3600000 - minutes * 60000) / 1000)}`.padStart(2, 0);
this
.
setState
({
countdown
:
`
${
day
}
:
${
hours
}
:
${
minutes
}
`
countdown
:
`
${
day
}
天
${
hours
}
时
${
minutes
}
分
`
})
}
else
{
hours
=
`
${
parseInt
(
date
/
(
60
*
60
*
1000
))}
`
.
padStart
(
2
,
0
)
...
...
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