Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mingPayPc
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
fengzhaoyu
mingPayPc
Commits
71408457
Commit
71408457
authored
Sep 10, 2019
by
liang ce
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
津贴时间
parent
234d512f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
utils.js
src/lib/utils.js
+1
-1
No files found.
src/lib/utils.js
View file @
71408457
...
...
@@ -3,7 +3,7 @@ const mwUtils = {
let
timeData
=
new
Date
(
parseInt
(
time
))
let
year
=
timeData
.
getFullYear
()
let
month
=
(
timeData
.
getMonth
()
+
1
)
>=
10
?
timeData
.
getMonth
()
+
1
:
`0
${
timeData
.
getMonth
()
+
1
}
`
let
date
=
timeData
.
getDate
()
.
length
>=
10
?
timeData
.
getDate
()
:
`0
${
timeData
.
getDate
()}
`
let
date
=
timeData
.
getDate
()
>=
10
?
timeData
.
getDate
()
:
`0
${
timeData
.
getDate
()}
`
let
hour
=
timeData
.
getHours
()
>=
10
?
timeData
.
getHours
()
:
`0
${
timeData
.
getHours
()}
`
let
minute
=
timeData
.
getMinutes
().
toString
().
length
>
1
?
timeData
.
getMinutes
()
:
`0
${
timeData
.
getMinutes
()}
`
return
`
${
year
}
年
${
month
}
月
${
date
}
日
${
hour
}
:
${
minute
}
`
...
...
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