123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <script>
- import apiSecurityAlarmMgr from "@/api/security/apiSecurityAlarmMgr";
- export default {
- data() {
- return {
- option: {
- legend: {
- data: [
- '一般告警',
- '重要告警',
- '紧急告警',
- ]
- },
- grid: {
- left: '0%', //默认10%
- right: '2%', //默认10%
- bottom: '12%', //默认60
- top: '15%',
- containLabel: true
- //grid区域是否包含坐标轴的刻度标签
- },
- xAxis: {
- data: []
- },
- yAxis: [
- {
- name: '次数',
- type: 'value',
- nameTextStyle: {
- padding: [10, 0, 10, -12]
- },
- },
- ],
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- },
- textStyle: {
- color: '#fff',
- align: 'left',
- fontSize: 14
- },
- axisLine: {//x坐标轴轴线
- show: true,
- lineStyle: {//x坐标轴轴线样式
- color: '#000',//'#ccc' | 'rgb(128, 128, 128)' | 'rgba(128, 128, 128, 0.5)',设置标签颜色
- }
- },
- backgroundColor: 'rgba(0,0,0,0.8)',
- },
- dataZoom: [
- {
- type: 'slider',
- start: 0,
- end: 100,
- height: 12,
- },
- {
- type: 'inside',
- start: 0,
- end: 100,
- }
- ],
- series: [
- {
- name: '一般告警',
- data: [],
- type: 'line',
- smooth: true,
- showSymbol:false,
- lineStyle: {
- color: "#5A9BFE",
- width: 1,
- },
- emphasis: {
- scale:1.5
- }
- },
- {
- name: '重要告警',
- data: [],
- type: 'line',
- smooth: true,
- showSymbol:false,
- lineStyle: {
- color: "#62CC97",
- width: 1,
- },
- emphasis: {
- scale:1.5
- },
- },
- {
- name: '紧急告警',
- data: [],
- type: 'line',
- smooth: true,
- showSymbol:false,
- lineStyle: {
- color: "#FDB456",
- width: 1,
- },
- emphasis: {
- scale:1.5
- },
- }
- ]
- },
- }
- },
- props: {
- height: Number,
- queryData: Object
- },
- mounted() {
- this.$nextTick(()=>{
- this.init()
- })
- },
- methods: {
- init() {
- let chart = this.$echarts.init(this.$refs.myChart)
- this.chart = chart;
- this.$util.chartsResize(this.chart);
- chart.setOption(this.option)
- this.getData()
- },
- getData() {
- return apiSecurityAlarmMgr.getAlarmTrend(this.queryData).then(res=>{
- let data = this.$util.dataUtil.covertDataToEcharts(res, ['commonly','important','urgent'])
- this.$util.dataUtil.refreshEchartsData(this.chart, this.option, data)
- })
- }
- }
- }
- </script>
- <template>
- <div style="width: 100%" :style="{height: height+'px'}" ref="myChart"></div>
- </template>
- <style lang="less" scoped>
- </style>
|