Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hg-smart
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
platform
hg-smart
Commits
2aae7781
Commit
2aae7781
authored
Oct 20, 2024
by
lyy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
生产驾驶舱和设备驾驶舱
parent
64ee8d7e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
4 deletions
+32
-4
HGBI002.jsp
src/main/webapp/HG/BI/HGBI002.jsp
+1
-0
HGBI003.jsp
src/main/webapp/HG/BI/HGBI003.jsp
+0
-0
manage-echarts.vue
src/main/webapp/HG/BI/components/hipi/001/manage-echarts.vue
+31
-4
123.png
src/main/webapp/common/img/123.png
+0
-0
powerDown.png
src/main/webapp/common/img/powerDown.png
+0
-0
No files found.
src/main/webapp/HG/BI/HGBI002.jsp
View file @
2aae7781
...
...
@@ -188,6 +188,7 @@
"manage-echarts"
:
"url:${ctx}/HG/BI/components/hipi/002/manage-echarts.vue"
,
"right-manage-cockpit"
:
"url:${ctx}/HG/BI/components/hipi/002/right-manage-cockpit.vue"
,
},
data
()
{
return
{
date
:
new
Date
(),
...
...
src/main/webapp/HG/BI/HGBI003.jsp
View file @
2aae7781
This diff is collapsed.
Click to expand it.
src/main/webapp/HG/BI/components/hipi/001/manage-echarts.vue
View file @
2aae7781
<
template
>
<div
ref=
"chartContainer"
:style=
"
{ width:
'100%', height: '40
vh' }">
</div>
<div
ref=
"chartContainer"
:style=
"
{ width:
width+'vw', height: height + '
vh' }">
</div>
</
template
>
<
script
>
module
.
exports
=
{
props
:
{
option
:
Object
option
:
{
type
:
Object
,
required
:
true
,
},
height
:
{
type
:
Number
,
default
:
35
},
width
:
{
type
:
Number
,
default
:
52
}
},
data
()
{
return
{
chart
:
null
,
};
},
watch
:
{
option
:
{
handler
(
newVal
)
{
if
(
this
.
chart
)
{
this
.
chart
.
setOption
(
newVal
);
}
},
deep
:
true
,
// 监听对象内部属性的变化
immediate
:
true
,
// 在绑定时立即执行一次监听器
},
},
mounted
()
{
this
.
initChart
();
...
...
@@ -26,7 +53,7 @@ module.exports = {
if
(
this
.
chart
)
{
this
.
chart
.
resize
();
}
}
}
}
,
}
,
};
</
script
>
src/main/webapp/common/img/123.png
deleted
100644 → 0
View file @
64ee8d7e
142 KB
src/main/webapp/common/img/
关机@2x
.png
→
src/main/webapp/common/img/
powerDown
.png
View file @
2aae7781
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment