Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张浩
/
br-client
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
8cbc9f98
...
8cbc9f9890a96b4c3002c0d8a4723536e93f6f32
authored
2022-01-19 15:00:21 +0800
by
张浩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
commit
1 parent
66e2c90e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
src/page/methodCount.vue
src/page/toolData.vue
src/page/methodCount.vue
View file @
8cbc9f9
...
...
@@ -30,7 +30,8 @@
export
default
{
data
()
{
return
{
showdate
:
this
.
$route
.
query
.
showdate
,
beginDate
:
this
.
$route
.
query
.
beginDate
,
endDate
:
this
.
$route
.
query
.
endDate
,
methodCounts
:
[]
}
},
...
...
@@ -51,7 +52,8 @@
}
}
this
.
$http
.
get
(
'/bigdata/methodCount?'
+
this
.
$qs
.
stringify
({
showdate
:
this
.
showdate
beginDate
:
this
.
beginDate
,
endDate
:
this
.
endDate
}),
config
).
then
((
res
)
=>
{
console
.
log
(
res
.
data
)
this
.
methodCounts
=
res
.
data
.
methodCounts
...
...
src/page/toolData.vue
View file @
8cbc9f9
...
...
@@ -129,7 +129,7 @@
methodCountSubmit
()
{
console
.
log
(
this
.
methodCount
.
showdate
);
const
{
href
}
=
this
.
$router
.
resolve
({
name
:
'methodCount'
,
query
:
{
showdate
:
this
.
methodCount
.
showdate
[
0
]}})
{
beginDate
:
this
.
methodCount
.
showdate
[
0
],
endDate
:
this
.
methodCount
.
showdate
[
1
]}})
window
.
open
(
href
,
'_blank'
)
}
}
...
...
Please
register
or
sign in
to post a comment