123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- <template>
- <div :class="className" :style="{height:height,width:width}" />
- </template>
- <script>
- import echarts from 'echarts'
- require('echarts/theme/macarons') // echarts theme
- import resize from './mixins/resize'
- export default {
- mixins: [resize],
- props: {
- className: {
- type: String,
- default: 'chart'
- },
- width: {
- type: String,
- default: '100%'
- },
- height: {
- type: String,
- default: '350px'
- },
- autoResize: {
- type: Boolean,
- default: true
- },
- chartData: {
- type: Object,
- required: true
- }
- },
- data() {
- return {
- chart: null
- }
- },
- watch: {
- chartData: {
- deep: true,
- handler(val) {
- this.setOptions(val)
- }
- }
- },
- mounted() {
- this.$nextTick(() => {
- this.initChart()
- })
- },
- beforeDestroy() {
- if (!this.chart) {
- return
- }
- this.chart.dispose()
- this.chart = null
- },
- methods: {
- initChart() {
- this.chart = echarts.init(this.$el, 'macarons')
- this.setOptions(this.chartData)
- },
- setOptions({ czjs, czxz,hjjs,hjxz,time } = {}) {
- // console.log(x,y[0].data,45)
- this.chart.setOption({
- xAxis: {
- data: time,
- boundaryGap: false,
- axisTick: {
- show: false
- }
- },
- grid: {
- left: 10,
- right: 10,
- bottom: 20,
- top: 30,
- containLabel: true
- },
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'cross'
- },
- padding: [5, 10]
- },
- yAxis: {
- axisTick: {
- show: false
- }
- },
- legend: {
- data: ''
- },
- series: [{
- name: '五保户', itemStyle: {
- normal: {
- color: '#FF005A',
- lineStyle: {
- color: '#FF005A',
- width: 2
- }
- }
- },
- smooth: true,
- type: 'line',
- data: czjs,
- animationDuration: 2800,
- animationEasing: 'cubicInOut'
- },
- {
- name: '低保户',
- smooth: true,
- type: 'line',
- itemStyle: {
- normal: {
- color: '#3888fa',
- lineStyle: {
- color: '#3888fa',
- width: 2
- },
- areaStyle: {
- color: '#f3f8ff'
- }
- }
- },
- data:czxz,
- animationDuration: 2800,
- animationEasing: 'quadraticOut'
- },
- {
- name: '贫困户',
- smooth: true,
- type: 'line',
- itemStyle: {
- normal: {
- color: '#47d737',
- lineStyle: {
- color: '#47d737',
- width: 2
- },
- areaStyle: {
- color: '#f3f8ff'
- }
- }
- },
- data:hjxz,
- animationDuration: 2800,
- animationEasing: 'quadraticOut'
- },
- {
- name: '党员',
- smooth: true,
- type: 'line',
- itemStyle: {
- normal: {
- color: '#fe4809',
- lineStyle: {
- color: '#fe4809',
- width: 2
- },
- areaStyle: {
- color: '#f3f8ff'
- }
- }
- },
- data:hjjs,
- animationDuration: 2800,
- animationEasing: 'quadraticOut'
- },
- {
- name: '退伍军人',
- smooth: true,
- type: 'line',
- itemStyle: {
- normal: {
- color: '#fe4809',
- lineStyle: {
- color: '#fe4809',
- width: 2
- },
- areaStyle: {
- color: '#f3f8ff'
- }
- }
- },
- data:hjjs,
- animationDuration: 2800,
- animationEasing: 'quadraticOut'
- },
- ]
- })
- }
- }
- }
- </script>
|