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
鲁尚清
3 years ago
Commit
17576210e5bb9828dcbfd6f281eacdf9422fa908
1 parent
cd36a73d
【1596】 3、APM诊断配置-取消指标筛选条件,资源查询更改参数 #2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
17 deletions
hg-monitor-web-zj/src/main/resources/static/vue3/src/components/page/faultDiagnosis/diagnosis/APM/index.html
hg-monitor-web-zj/src/main/resources/static/vue3/src/components/page/faultDiagnosis/diagnosis/APM/index.js
hg-monitor-web-zj/src/main/resources/static/vue3/src/components/page/faultDiagnosis/diagnosis/APM/index.html
View file @
1757621
...
...
@@ -8,12 +8,12 @@
<el-col
:span=
"24"
>
<div
class=
"flex-div-start margin-top-bottom-10"
>
<!--lsq 取消掉选择资源及选择指标两个筛选条件 2022-08-17-->
<!-- <el-select :size="$global.elementConfig.size.input" class="margin-right-10" v-model="resTypeArr" @change="changeRes" filterable clearable collapse-tags placeholder="请选择资源">
<!--lsq 取消掉选择指标筛选条件 2022-08-17-->
<el-select
:size=
"$global.elementConfig.size.input"
class=
"margin-right-10"
v-model=
"resTypeArr"
@
change=
"changeRes"
filterable
clearable
collapse-tags
placeholder=
"请选择资源"
>
<el-option
v-for=
"item in resTypeList"
:label=
"item.resName"
:value=
"item.resId"
></el-option>
</el-select>
-->
</el-select>
<!-- <el-dropdown class="margin-right-10">
<cm-res-type-tree-input multiple clearable collapseTags @callback="getResType"/>
...
...
hg-monitor-web-zj/src/main/resources/static/vue3/src/components/page/faultDiagnosis/diagnosis/APM/index.js
View file @
1757621
...
...
@@ -21,18 +21,7 @@ export default {
sortable
:
true
,
align
:
'center'
,
},
/* {
prop: 'ip',
label: 'ip地址',
sortable: true,
align: 'center',
},*/
{
prop
:
'kpiName'
,
label
:
'指标名称'
,
sortable
:
true
,
align
:
'center'
,
},
{
prop
:
'flag'
,
label
:
'指标标识'
,
...
...
@@ -238,6 +227,8 @@ export default {
// proxy.APMVisible=false;
}
}
else
{
proxy
.
$global
.
showMsg
(
res
.
msg
,
'warning'
);
}
}
)
...
...
@@ -260,7 +251,7 @@ export default {
if
(
props
.
apmMonitorList
){
props
.
apmMonitorList
.
map
((
item
,
index
)
=>
{
proxy
.
tableDataList
.
map
(
v
=>
{
if
(
item
.
id
==
v
.
id
){
if
(
item
.
resId
==
v
.
resId
&&
item
.
flag
==
item
.
flag
){
proxy
.
apmMonitorListChecked
.
push
(
v
)
}
...
...
@@ -325,7 +316,8 @@ export default {
let
params
=
{
keyWords
:
this
.
keyWords
,
busId
:
this
.
bizId
,
kpiId
:
this
.
kpiTypeArr
,
// kpiId:this.kpiTypeArr,
resId
:
this
.
resTypeArr
,
page
:
this
.
page
,
pageSize
:
this
.
pageSize
,
...
...
Please
register
or
login
to post a comment