85 lines
1.6 KiB
Vue
85 lines
1.6 KiB
Vue
<template>
|
|
<div ref="chartRef" :style="{ height, width }"></div>
|
|
</template>
|
|
<script>
|
|
import { ref, reactive, watch, watchEffect } from 'vue';
|
|
import { cloneDeep } from 'lodash';
|
|
import { useEcharts } from '../../hooks/useEcharts';
|
|
|
|
export default {
|
|
name: 'CustomEchartMaps',
|
|
props: {
|
|
chartData: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
size: {
|
|
type: Object,
|
|
default: () => {},
|
|
},
|
|
option: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
width: {
|
|
type: String,
|
|
default: '100%',
|
|
},
|
|
geo: {
|
|
type: Object,
|
|
default: () => {
|
|
return {};
|
|
},
|
|
},
|
|
name: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
height: {
|
|
type: String,
|
|
default: 'calc(100vh - 78px)',
|
|
},
|
|
},
|
|
emits: ['click'],
|
|
setup(props, { emit }) {
|
|
const chartRef = ref(null);
|
|
const { setOptions, getInstance, resize, registerMap } = useEcharts(chartRef);
|
|
const option = reactive({
|
|
// series: [],
|
|
});
|
|
|
|
watchEffect(() => {
|
|
props.chartData && initCharts();
|
|
});
|
|
|
|
watch(
|
|
() => props.size,
|
|
() => {
|
|
resize();
|
|
},
|
|
{
|
|
immediate: true,
|
|
}
|
|
);
|
|
|
|
function initCharts() {
|
|
if (props.option) {
|
|
Object.assign(option, cloneDeep(props.option));
|
|
}
|
|
// option.series = props.chartData;
|
|
setOptions(option);
|
|
registerMap(props.name, props.geo);
|
|
resize();
|
|
getInstance()?.off('click', onClick);
|
|
getInstance()?.on('click', onClick);
|
|
}
|
|
|
|
function onClick(params) {
|
|
emit('click', params);
|
|
}
|
|
|
|
return { chartRef };
|
|
},
|
|
};
|
|
</script>
|