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
Plain Diff
Browse Files
Authored by
王涛
2022-03-08 09:19:54 +0800
Commit
ecaf5ef7f59e3df9f8e2f7e98251c408064600fe
2 parents
420114ee
c272b395
Merge branch 'master-500-dev-LH' into 'master-500-dev'
性能走势默认自定义查询6小时 See merge request
!434
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/dateRange/indexInflux.js
hg-monitor-web-qh/src/main/resources/static/vue3/src/views/pieDetailLine/index.html
hg-monitor-web-qh/src/main/resources/static/vue3/src/views/pieDetailLine/index.js
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/dateRange/indexInflux.js
View file @
ecaf5ef
...
...
@@ -51,6 +51,14 @@ export default {
},
},
{
text
:
'最近6小时'
,
value
:
()
=>
{
const
end
=
new
Date
();
const
start
=
formatDate
(
6
,
'h'
);
return
[
start
,
end
]
},
},
{
text
:
'最近1天'
,
value
:
()
=>
{
const
end
=
new
Date
();
...
...
@@ -238,7 +246,7 @@ export default {
const
oneDay
=
()
=>
{
const
end
=
getDateTime
(
new
Date
());
const
start
=
formatDate
(
1
,
'd
'
);
const
start
=
formatDate
(
6
,
'h
'
);
dateValue
.
value
=
[
start
,
end
]
changeDate
(
dateValue
.
value
)
}
...
...
hg-monitor-web-qh/src/main/resources/static/vue3/src/views/pieDetailLine/index.html
View file @
ecaf5ef
...
...
@@ -28,7 +28,7 @@
<el-col
:span=
"24"
class=
"detail_linechart"
>
<LineChart
:optionData=
"optionData"
v-if=
"optionData"
></LineChart>
<!-- <div class="detail_linechart" id="indentKpiLineChart"></div>-->
<!-- <div class="detail_linechart" id="indentKpiLineChart"></div>-->
<!-- <div class="detail_linechart" id="warningKpiLineChart" style="margin-top:35px;"></div>-->
<!-- <div class="detail_linechart" id="line-tingyun-trendKpiLineChart" style="margin-top:35px;"></div>-->
...
...
hg-monitor-web-qh/src/main/resources/static/vue3/src/views/pieDetailLine/index.js
View file @
ecaf5ef
Please
register
or
login
to post a comment