Toggle navigation
Toggle navigation
This project
Loading...
Sign in
monitor_v3
/
hg-monitor-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
XuHaoJie
3 years ago
Commit
9d397d09928c4c8b32dbab59bc3fa2589797f6e5
1 parent
3b7f802a
杭州-对比分析-编辑时优化已添加和未添加列表
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/analysis/config/index.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/views/analysis/config/index.js
View file @
9d397d0
...
...
@@ -199,8 +199,8 @@ export default {
kpiId
:
kpiTypeArr
.
value
.
join
(
','
),
busId
:
busTypeArr
.
value
.
join
(
','
),
configId
:
config
.
value
,
page
:
2
,
limit
:
10
page
:
1
,
limit
:
50
}
}
...
...
@@ -210,8 +210,8 @@ export default {
// }
proxy
.
$http
.
get
(
`
/
api
-
web
/
ContrastAnalysis
/
added
`
,
getParams
(),
function
(
res
)
{
if
(
res
&&
res
.
data
)
{
proxy
.
countFirst
=
res
.
count
;
if
(
res
&&
res
.
success
)
{
proxy
.
countFirst
=
res
.
count
;
tabFirstList
.
value
=
res
.
data
;
}
});
...
...
@@ -222,8 +222,8 @@ export default {
// return false;
// }
proxy
.
$http
.
get
(
`
/
api
-
web
/
ContrastAnalysis
/
notAdded
`
,
getParams
(),
function
(
res
)
{
if
(
res
&&
res
.
data
)
{
proxy
.
count
=
res
.
count
;
if
(
res
&&
res
.
success
)
{
proxy
.
count
=
res
.
count
;
tabSecondList
.
value
=
res
.
data
;
}
});
...
...
Please
register
or
login
to post a comment