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
1212f2e7c88192c81740e37ad0ea3440fbd43996
1 parent
9c122207
状态指标散点图的y轴取消掉00,散掉图高度调整 #1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
hg-monitor-web-base/src/main/resources/static/vue3/src/views/connectScatter/index.html
hg-monitor-web-base/src/main/resources/static/vue3/src/views/connectScatter/index.js
hg-monitor-web-base/src/main/resources/static/vue3/src/views/connectScatter/index.html
View file @
1212f2e
...
...
@@ -22,7 +22,7 @@
</el-row>
<el-row
class=
"detail-content"
>
<el-col
:span=
"24"
class=
"detail_linechart"
>
<el-col
:span=
"24"
class=
"detail_linechart"
style=
"height:550px !important;"
>
<LineChart
:optionData=
"optionData"
v-if=
"optionData"
></LineChart>
<!-- <div class="detail_linechart" id="indentKpiLineChart"></div>-->
...
...
hg-monitor-web-base/src/main/resources/static/vue3/src/views/connectScatter/index.js
View file @
1212f2e
...
...
@@ -339,16 +339,16 @@ export default {
for
(
let
j
=
0
;
j
<
60
;
j
++
){
if
(
i
<
10
){
if
(
j
<
10
){
arr1
.
push
(
'0'
+
i
+
':0'
+
j
);
arr1
.
push
(
'0'
+
i
)
//
+':0'+j);
}
else
{
arr1
.
push
(
'0'
+
i
+
':'
+
j
);
arr1
.
push
(
'0'
+
i
)
//
+':'+j);
}
}
else
{
if
(
j
<
10
){
arr1
.
push
(
i
+
':0'
+
j
);
arr1
.
push
(
i
)
//
+':0'+j);
}
else
{
arr1
.
push
(
i
+
':'
+
j
);
arr1
.
push
(
i
)
//
+':'+j);
}
}
}
...
...
Please
register
or
login
to post a comment