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
594d743e4b87daddb216685d33aa328277509cc3
1 parent
8de25ca3
【性能曲线】测试名称重复 BUG#273
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
hg-monitor-web-base/src/main/resources/static/src/controller/commonDetail.js
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/dateRange/indexInflux.js
hg-monitor-web-base/src/main/resources/static/src/controller/commonDetail.js
View file @
594d743
...
...
@@ -1980,9 +1980,13 @@ layui.define(['laytpl', 'admin', 'form', 'table', 'echarts', 'sessions', 'xmSele
ident
:
ident
,
trend
:
trend
,
unit
:
unit
,
name
:
kpiName
+
" "
+
name
// Start Wang 2022/2/8 14:28 BUG#273 【性能曲线】测试名称重复
name
:
kpiName
,
};
common
.
openLineChart
(
kpiName
+
" "
+
name
,
params
);
// common.openLineChart(kpiName + " " + name, params);
common
.
openLineChart
(
kpiName
,
params
);
// End Wang 2022/2/8 14:29
});
//更多点击事件
$
(
"#"
+
tableId
+
"More"
).
unbind
(
"click"
).
on
(
"click"
,
function
()
{
...
...
@@ -3845,7 +3849,10 @@ layui.define(['laytpl', 'admin', 'form', 'table', 'echarts', 'sessions', 'xmSele
ident
:
ident
,
trend
:
trend
,
unit
:
unit
,
name
:
kpiName
+
" "
+
name
,
// Start Wang 2022/2/8 14:28 BUG#273 【性能曲线】测试名称重复
// name:kpiName + " " + name,
name
:
kpiName
,
// End Wang 2022/2/8 14:29
subFlag
:
subFlag
,
resType
:
resType
};
...
...
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/dateRange/indexInflux.js
View file @
594d743
...
...
@@ -167,9 +167,9 @@ export default {
let
params
=
{
timeScope
:
timeScope
.
value
,
//
keys:keysVal
keys
:
keysVal
// timeScope:'2022-02-07 10:00:00,2022-02-08 10:00:00',
keys
:
'C620C1D453B79095A64314C8215335D5:KPI7054BC34:cpu'
//
keys:'C620C1D453B79095A64314C8215335D5:KPI7054BC34:cpu'
}
proxy
.
$http
.
get
(
`
/
api
-
web
/
cm
-
date
-
range
/
loadPerformanceCustomFromInfluxdb
`
,
params
,
function
(
res
)
{
emit
(
'callbackinflux'
,
res
)
...
...
Please
register
or
login
to post a comment