2024-08-07 08:57:56 +08:00
|
|
|
<script lang="ts">
|
|
|
|
import type { EChartsOption } from 'echarts';
|
|
|
|
|
2024-08-07 16:25:38 +08:00
|
|
|
import { defineComponent, onMounted, ref, watch } from 'vue';
|
2024-08-07 08:57:56 +08:00
|
|
|
|
2024-08-07 16:25:38 +08:00
|
|
|
import { EchartsUI, type EchartsUIType, useEcharts } from '@vben/chart-ui';
|
2024-08-07 08:57:56 +08:00
|
|
|
import { preferences } from '@vben/preferences';
|
|
|
|
|
|
|
|
export default defineComponent({
|
2024-08-07 16:25:38 +08:00
|
|
|
components: { EchartsUI },
|
2024-08-07 08:57:56 +08:00
|
|
|
name: 'CommandChart',
|
|
|
|
props: {
|
|
|
|
data: {
|
|
|
|
default: () => [],
|
|
|
|
type: Array,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
setup(props, { expose }) {
|
|
|
|
expose({});
|
|
|
|
|
2024-08-07 16:25:38 +08:00
|
|
|
const chartRef = ref<EchartsUIType>();
|
|
|
|
const { renderEcharts } = useEcharts(chartRef);
|
2024-08-07 08:57:56 +08:00
|
|
|
|
|
|
|
watch(
|
|
|
|
() => props.data,
|
|
|
|
() => {
|
2024-08-07 16:25:38 +08:00
|
|
|
if (!chartRef.value) return;
|
2024-08-07 08:57:56 +08:00
|
|
|
setEchartsOption(props.data);
|
|
|
|
},
|
|
|
|
{ immediate: true },
|
|
|
|
);
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
setEchartsOption(props.data);
|
|
|
|
});
|
|
|
|
|
|
|
|
watch(
|
|
|
|
() => preferences.theme.mode,
|
2024-08-07 16:25:38 +08:00
|
|
|
() => {
|
2024-08-07 08:57:56 +08:00
|
|
|
setEchartsOption(props.data);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
function setEchartsOption(data: any[]) {
|
|
|
|
const option: EChartsOption = {
|
|
|
|
series: [
|
|
|
|
{
|
|
|
|
animationDuration: 1000,
|
|
|
|
animationEasing: 'cubicInOut',
|
2024-08-07 16:25:38 +08:00
|
|
|
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',
|
|
|
|
},
|
|
|
|
};
|
2024-08-07 16:25:38 +08:00
|
|
|
renderEcharts(option);
|
2024-08-07 08:57:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
2024-08-07 16:25:38 +08:00
|
|
|
chartRef,
|
2024-08-07 08:57:56 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-08-07 16:25:38 +08:00
|
|
|
<div class="flex h-[400px] w-full items-center justify-center">
|
|
|
|
<EchartsUI ref="chartRef" />
|
|
|
|
</div>
|
2024-08-07 08:57:56 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped></style>
|