Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
Community-Mining-Admin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mining
Community-Mining-Admin
Commits
d8a00b16
Commit
d8a00b16
authored
Mar 18, 2022
by
Ted Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 白名单数据页日期传给后端格式错误
parent
6e7bedec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
index.html
public/index.html
+2
-2
Statistics.vue
src/views/whitelist/Statistics.vue
+2
-2
No files found.
public/index.html
View file @
d8a00b16
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
<div
id=
"app"
></div>
<div
id=
"app"
></div>
<!-- built files will be auto injected -->
<!-- built files will be auto injected -->
<!-- <script>console.log('v1.1.0')</script> -->
<!-- <script>console.log('v1.1.0')</script> -->
<
script>
console
.
log
(
'dev: 1.1.0'
)
</script
>
<
!-- <script>console.log('dev: 1.1.0')</script> --
>
<
!-- <script>console.log('production: 1.0.0')</script> --
>
<
script>
console
.
log
(
'production: 1.1.0'
)
</script
>
</body>
</body>
</html>
</html>
src/views/whitelist/Statistics.vue
View file @
d8a00b16
...
@@ -93,8 +93,8 @@ export default Vue.extend({
...
@@ -93,8 +93,8 @@ export default Vue.extend({
poolId
:
this
.
poolList
[
this
.
currPoolIndex
].
id
,
poolId
:
this
.
poolList
[
this
.
currPoolIndex
].
id
,
}
as
any
}
as
any
if
(
this
.
datePick
[
0
]
&&
this
.
datePick
[
1
])
{
if
(
this
.
datePick
[
0
]
&&
this
.
datePick
[
1
])
{
payload
.
startTime
=
dayjs
(
this
.
datePick
[
0
]).
format
(
'YYYY-MM-DD'
)
payload
.
startTime
=
dayjs
(
this
.
datePick
[
0
]).
unix
(
)
payload
.
endTime
=
dayjs
(
this
.
datePick
[
1
]).
format
(
'YYYY-MM-DD'
)
payload
.
endTime
=
dayjs
(
this
.
datePick
[
1
]).
unix
(
)
}
}
const
result
=
await
getWhiteDailyList
(
payload
)
const
result
=
await
getWhiteDailyList
(
payload
)
this
.
list
=
result
.
data
.
list
this
.
list
=
result
.
data
.
list
...
...
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