Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
laravelzh
Project
Project
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
冯超鹏
laravelzh
Commits
b054bd4b
Commit
b054bd4b
authored
Dec 15, 2020
by
冯超鹏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
29e35bf0
Pipeline
#191
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
214 additions
and
0 deletions
+214
-0
lineMarker.vue
resources/js/components/Charts/lineMarker.vue
+214
-0
No files found.
resources/js/components/Charts/lineMarker.vue
0 → 100644
View file @
b054bd4b
<
template
>
<div
:id=
"id"
:class=
"className"
:style=
"
{height:height,width:width}" />
</
template
>
<
script
>
import
echarts
from
'echarts'
;
import
resize
from
'./mixins/resize'
;
import
{
userdevicemonthcount
}
from
'@/api/homepage'
;
export
default
{
mixins
:
[
resize
],
props
:
{
className
:
{
type
:
String
,
default
:
'chart'
,
},
id
:
{
type
:
String
,
default
:
'chart'
,
},
width
:
{
type
:
String
,
default
:
'200px'
,
},
height
:
{
type
:
String
,
default
:
'200px'
,
},
},
data
()
{
return
{
chart
:
null
,
userdevicepolice
:
[],
userdevicecount
:
[],
};
},
created
()
{
this
.
UserStatistics
();
},
beforeDestroy
()
{
if
(
!
this
.
chart
)
{
return
;
}
this
.
chart
.
dispose
();
this
.
chart
=
null
;
},
methods
:
{
initChart
()
{
const
xData
=
(
function
()
{
const
data
=
[];
const
date
=
new
Date
();
for
(
let
i
=
1
;
i
<
date
.
getMonth
()
+
1
+
1
;
i
++
)
{
data
.
push
(
i
+
'月'
);
}
return
data
;
}());
this
.
chart
=
echarts
.
init
(
document
.
getElementById
(
this
.
id
));
this
.
chart
.
setOption
({
backgroundColor
:
'#394056'
,
title
:
{
top
:
20
,
text
:
'设备统计'
,
textStyle
:
{
fontWeight
:
'normal'
,
fontSize
:
16
,
color
:
'#F1F1F3'
,
},
left
:
'1%'
,
},
tooltip
:
{
trigger
:
'axis'
,
axisPointer
:
{
lineStyle
:
{
color
:
'#57617B'
,
},
},
},
legend
:
{
top
:
20
,
icon
:
'rect'
,
itemWidth
:
14
,
itemHeight
:
5
,
itemGap
:
13
,
data
:
[
'设备数量'
,
'报警数量'
],
right
:
'4%'
,
textStyle
:
{
fontSize
:
12
,
color
:
'#F1F1F3'
,
},
},
grid
:
{
top
:
100
,
left
:
'2%'
,
right
:
'2%'
,
bottom
:
'2%'
,
containLabel
:
true
,
},
xAxis
:
[{
type
:
'category'
,
boundaryGap
:
false
,
axisLine
:
{
lineStyle
:
{
color
:
'#57617B'
,
},
},
data
:
xData
,
}],
yAxis
:
[{
type
:
'value'
,
name
:
'(%)'
,
axisTick
:
{
show
:
false
,
},
axisLine
:
{
lineStyle
:
{
color
:
'#57617B'
,
},
},
axisLabel
:
{
margin
:
10
,
textStyle
:
{
fontSize
:
14
,
},
},
splitLine
:
{
lineStyle
:
{
color
:
'#57617B'
,
},
},
}],
series
:
[{
name
:
'设备数量'
,
type
:
'line'
,
smooth
:
true
,
symbol
:
'circle'
,
symbolSize
:
5
,
showSymbol
:
false
,
lineStyle
:
{
normal
:
{
width
:
1
,
},
},
areaStyle
:
{
normal
:
{
color
:
new
echarts
.
graphic
.
LinearGradient
(
0
,
0
,
0
,
1
,
[{
offset
:
0
,
color
:
'rgba(0, 136, 212, 0.3)'
,
},
{
offset
:
0.8
,
color
:
'rgba(0, 136, 212, 0)'
,
}],
false
),
shadowColor
:
'rgba(0, 0, 0, 0.1)'
,
shadowBlur
:
10
,
},
},
itemStyle
:
{
normal
:
{
color
:
'rgb(0,136,212)'
,
borderColor
:
'rgba(0,136,212,0.2)'
,
borderWidth
:
12
,
},
},
data
:
this
.
userdevicecount
,
},
{
name
:
'报警数量'
,
type
:
'line'
,
smooth
:
true
,
symbol
:
'circle'
,
symbolSize
:
5
,
showSymbol
:
false
,
lineStyle
:
{
normal
:
{
width
:
1
,
},
},
areaStyle
:
{
normal
:
{
color
:
new
echarts
.
graphic
.
LinearGradient
(
0
,
0
,
0
,
1
,
[{
offset
:
0
,
color
:
'rgba(219, 50, 51, 0.3)'
,
},
{
offset
:
0.8
,
color
:
'rgba(219, 50, 51, 0)'
,
}],
false
),
shadowColor
:
'rgba(0, 0, 0, 0.1)'
,
shadowBlur
:
10
,
},
},
itemStyle
:
{
normal
:
{
color
:
'rgb(219,50,51)'
,
borderColor
:
'rgba(219,50,51,0.2)'
,
borderWidth
:
12
,
},
},
data
:
this
.
userdevicepolice
,
}],
});
},
UserStatistics
()
{
userdevicemonthcount
()
.
then
(
response
=>
{
if
(
response
.
code
===
200
)
{
this
.
userdevicecount
=
response
.
data
.
devicedata
;
this
.
userdevicepolice
=
response
.
data
.
devicepolice
;
this
.
initChart
();
}
})
.
catch
(
err
=>
{
console
.
log
(
err
);
});
},
},
};
</
script
>
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