-
Notifications
You must be signed in to change notification settings - Fork 9
/
echarts-middleware.vue
69 lines (68 loc) · 1.82 KB
/
echarts-middleware.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<template>
<div v-once class="echarts"></div>
</template>
<script>
import echarts from 'echarts/lib/echarts'
// echarts实例
export default {
props: {
value: null,
opt: Object,
h: Number,
w: Number,
theme: [String, Object],
renderer: {
type: String,
default: 'canvas'
}
},
data () {
return {
chart: null
}
},
mounted () {
const opt = this.opt
let width = this.w,
height = this.h
if (!echarts) {
console.error('本组件需要配合echarts组件使用,请运行npm i -save echarts安装!')
return null
}
// 判断用户是否指定了组件的 宽 和 高,如果指定了,那么使用用户指定的值
// 如果没有指定则使用 父组件 宽高
// 如果出错 使用400px默认宽高
if (!width && !height) {
const parent = this.$el.parentNode
if (parent && parent.clientWidth && parent.clientHeight) {
height = parent.clientHeight
width = parent.clientWidth
} else {
height = width = 400
console.error('图表 宽度(w) 和 高度(h) 未设置!')
}
}
// 注册echarts
if (opt) {
let chart = null
setTimeout(() => {
const renderer = this.renderer
chart = echarts.init(this.$el, this.theme, {width, height, renderer})
// 绘制图表
chart.setOption(opt)
this.chart = chart
// 判断是否绑定v-model,如果绑定了就将值传给v-model
if (this.value !== undefined) {
this.$emit('input', chart)
}
}, 0)
}
},
beforeDestroy () {
if (this.chart) {
this.chart.dispose()
this.chart = null
}
}
}
</script>