From 5f6d3261935a4a0f3d674afd527940b4b4ea5fc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Tue, 25 Feb 2025 14:49:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=AF=B9=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Echart/src/charts.vue | 5 +- src/views/screen/compenonts/map.vue | 316 ++++++++++++++++++- src/views/screen/compenonts/rightwrapper.vue | 61 ++-- src/views/screen/compenonts/tabber.vue | 6 +- 4 files changed, 357 insertions(+), 31 deletions(-) diff --git a/src/components/Echart/src/charts.vue b/src/components/Echart/src/charts.vue index 70cf468..d4f1a34 100644 --- a/src/components/Echart/src/charts.vue +++ b/src/components/Echart/src/charts.vue @@ -25,6 +25,7 @@ const props = defineProps({ }) const elRef = ref() let chartRef: Nullable = null +let observer:Nullable=null const initChart = () => { echarts.registerMap('yx', YX as any) @@ -33,6 +34,8 @@ const initChart = () => { chartRef.setOption(props.options, true) } } + + watch( () => props.options, (options) => { @@ -73,7 +76,7 @@ onActivated(() => { defineExpose({ getChartRef, - resizeHandler + resizeHandler, })