hwms-shop-admin/src/components/echarts/index.vue

78 lines
1.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<div :id="echarts" :style="styles" />
</div>
</template>
<script>
// import echarts from 'echarts'
import * as echarts from 'echarts';
export default {
name: 'Index',
props: {
styles: {
type: Object,
default: null
},
optionData: {
type: Object,
default: null
}
},
data() {
return {
myChart: null
}
},
computed: {
echarts() {
return 'echarts' + Math.ceil(Math.random() * 100)
}
},
watch: {
optionData: {
handler(newVal, oldVal) {
this.handleSetVisitChart()
},
deep: true // 对象内部属性的监听,关键。
}
},
mounted: function() {
const vm = this
vm.$nextTick(() => {
vm.handleSetVisitChart()
window.addEventListener('resize', this.wsFunc)
})
},
beforeDestroy() {
window.removeEventListener('resize', this.wsFunc)
if (!this.myChart) {
return
}
this.myChart.dispose()
this.myChart = null
},
methods: {
wsFunc() {
this.myChart.resize()
},
handleSetVisitChart() {
var chartDom = document.getElementById(this.echarts);
var myChart = echarts.init(chartDom);
var option;
// this.myChart = echarts.init(document.getElementById(this.echarts))
// let option = null
option = this.optionData
// 基于准备好的dom初始化echarts实例
// this.myChart.setOption(option, true)
option && myChart.setOption(option);
}
}
}
</script>
<style scoped>
</style>