Files
ruoyi-plus-vben5/apps/web-antd/src/views/monitor/cache/components/command-chart.vue

76 lines
1.6 KiB
Vue
Raw Normal View History

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