fix: fix renderEcharts refresh issue (#4741)

pull/48/MERGE
zhou 2024-10-27 21:18:36 +08:00 committed by GitHub
parent 6688a6b3c2
commit d7d7466524
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 4 deletions

View File

@ -31,12 +31,11 @@ function useEcharts(chartRef: Ref<EchartsUIType>) {
const getOptions = computed((): EChartsOption => {
if (!isDark.value) {
return cacheOptions;
return {};
}
return {
backgroundColor: 'transparent',
...cacheOptions,
};
});
@ -52,10 +51,14 @@ function useEcharts(chartRef: Ref<EchartsUIType>) {
const renderEcharts = (options: EChartsOption, clear = true) => {
cacheOptions = options;
const currentOptions = {
...options,
...getOptions.value,
};
return new Promise((resolve) => {
if (chartRef.value?.offsetHeight === 0) {
useTimeoutFn(() => {
renderEcharts(getOptions.value);
renderEcharts(currentOptions);
resolve(null);
}, 30);
return;
@ -67,7 +70,7 @@ function useEcharts(chartRef: Ref<EchartsUIType>) {
if (!instance) return;
}
clear && chartInstance?.clear();
chartInstance?.setOption(getOptions.value);
chartInstance?.setOption(currentOptions);
resolve(null);
}, 30);
});