76 lines
1.6 KiB
Vue
76 lines
1.6 KiB
Vue
<script lang="ts">
|
|
import type { EChartsOption } from 'echarts';
|
|
|
|
import { defineComponent, onActivated, onMounted, ref, watch } from 'vue';
|
|
|
|
import {
|
|
EchartsUI,
|
|
type EchartsUIType,
|
|
useEcharts,
|
|
} from '@vben/plugins/echarts';
|
|
|
|
export default defineComponent({
|
|
components: { EchartsUI },
|
|
props: {
|
|
data: {
|
|
default: () => [],
|
|
type: Array,
|
|
},
|
|
},
|
|
setup(props, { expose }) {
|
|
expose({});
|
|
|
|
const chartRef = ref<EchartsUIType>();
|
|
const { renderEcharts, resize } = useEcharts(chartRef);
|
|
|
|
watch(
|
|
() => props.data,
|
|
() => {
|
|
if (!chartRef.value) return;
|
|
setEchartsOption(props.data);
|
|
},
|
|
{ immediate: true },
|
|
);
|
|
|
|
onMounted(() => {
|
|
setEchartsOption(props.data);
|
|
});
|
|
/**
|
|
* 从其他页面切换回来会有一个奇怪的动画效果 需要调用resize
|
|
* 该饼图组件需要关闭animation
|
|
*/
|
|
onActivated(() => resize(false));
|
|
|
|
function setEchartsOption(data: any[]) {
|
|
const option: EChartsOption = {
|
|
series: [
|
|
{
|
|
animationDuration: 1000,
|
|
animationEasing: 'cubicInOut',
|
|
center: ['50%', '50%'],
|
|
data,
|
|
name: '命令',
|
|
radius: [15, 95],
|
|
roseType: 'radius',
|
|
type: 'pie',
|
|
},
|
|
],
|
|
tooltip: {
|
|
formatter: '{a} <br/>{b} : {c} ({d}%)',
|
|
trigger: 'item',
|
|
},
|
|
};
|
|
renderEcharts(option);
|
|
}
|
|
|
|
return {
|
|
chartRef,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<EchartsUI ref="chartRef" height="400px" width="100%" />
|
|
</template>
|