| | |
| | | </template> |
| | | |
| | | <script> |
| | | import echarts from 'echarts' |
| | | require('echarts/theme/macarons') // echarts theme |
| | | import resize from '../../dashboard/mixins/resize' |
| | | import echarts from "echarts"; |
| | | require("echarts/theme/macarons"); // echarts theme |
| | | import resize from "../../dashboard/mixins/resize"; |
| | | |
| | | export default { |
| | | mixins: [resize], |
| | | props: { |
| | | className: { |
| | | type: String, |
| | | default: 'chart' |
| | | default: "chart" |
| | | }, |
| | | width: { |
| | | type: String, |
| | | default: '100%' |
| | | default: "100%" |
| | | }, |
| | | height: { |
| | | type: String, |
| | | default: '300px' |
| | | default: "300px" |
| | | }, |
| | | autoResize: { |
| | | type: Boolean, |
| | |
| | | data() { |
| | | return { |
| | | chart: null |
| | | } |
| | | }; |
| | | }, |
| | | watch: { |
| | | chartData: { |
| | | deep: true, |
| | | handler(val) { |
| | | this.setOptions(val) |
| | | this.setOptions(val); |
| | | } |
| | | } |
| | | }, |
| | | mounted() { |
| | | this.$nextTick(() => { |
| | | this.initChart() |
| | | }) |
| | | this.initChart(); |
| | | }); |
| | | }, |
| | | beforeDestroy() { |
| | | if (!this.chart) { |
| | | return |
| | | return; |
| | | } |
| | | this.chart.dispose() |
| | | this.chart = null |
| | | this.chart.dispose(); |
| | | this.chart = null; |
| | | }, |
| | | methods: { |
| | | initChart() { |
| | | this.chart = echarts.init(this.$el, 'macarons') |
| | | this.setOptions(this.chartData) |
| | | this.chart = echarts.init(this.$el, "macarons"); |
| | | this.setOptions(this.chartData); |
| | | }, |
| | | setOptions({ expectedData, actualData,title } = {}) { |
| | | this.chart.setOption({ |
| | | title: { |
| | | text: title, |
| | | left: 'left', |
| | | left: "left", |
| | | textStyle: { |
| | | color: '#606266', |
| | | color: "#fff" |
| | | } |
| | | }, |
| | | xAxis: { |
| | | data: ['1月','2月','3月','4月','5月','6月','7月','8月','9月','10月','11月','12月'], |
| | | type: 'category', |
| | | data: [ |
| | | "1月", |
| | | "2月", |
| | | "3月", |
| | | "4月", |
| | | "5月", |
| | | "6月", |
| | | "7月", |
| | | "8月", |
| | | "9月", |
| | | "10月", |
| | | "11月", |
| | | "12月" |
| | | ], |
| | | type: "category" |
| | | }, |
| | | grid: { |
| | | left: 10, |
| | |
| | | containLabel: true |
| | | }, |
| | | tooltip: { |
| | | trigger: 'axis', |
| | | trigger: "axis", |
| | | axisPointer: { |
| | | type: 'cross' |
| | | type: "cross" |
| | | }, |
| | | padding: [5, 10] |
| | | }, |
| | |
| | | } |
| | | }, |
| | | legend: { |
| | | data: [] |
| | | data: [], |
| | | textStyle: { |
| | | color: "#fff" |
| | | } |
| | | }, |
| | | series: [{ |
| | | series: [ |
| | | { |
| | | name: title, |
| | | itemStyle: { |
| | | normal: { |
| | | color: '#FF005A', |
| | | color: "#FF005A", |
| | | lineStyle: { |
| | | color: '#FF005A', |
| | | color: "#FF005A", |
| | | width: 2 |
| | | } |
| | | } |
| | | }, |
| | | smooth: true, |
| | | type: 'line', |
| | | type: "line", |
| | | data: expectedData, |
| | | animationDuration: 2800, |
| | | animationEasing: 'cubicInOut' |
| | | }] |
| | | }) |
| | | animationEasing: "cubicInOut" |
| | | } |
| | | ] |
| | | }); |
| | | } |
| | | } |
| | | } |
| | | }; |
| | | </script> |