From 8919ba9b7ff495ca475f9062b4b5f73864908586 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Tue, 4 Mar 2025 12:01:11 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E7=A7=BB=E5=8A=A8=E7=AB=AF=E9=85=8D=E7=BD=AE=E6=B0=B4?= =?UTF-8?q?=E6=B3=A2=E5=9B=BE=E5=88=87=E6=8D=A2=E4=B8=BA=E5=8A=A8=E6=80=81?= =?UTF-8?q?=E5=80=BC=E5=90=8E=E6=A0=B7=E5=BC=8F=E5=8F=91=E7=94=9F=E5=8F=98?= =?UTF-8?q?=E5=8C=96=EF=BC=8C=E4=BD=86=E6=95=B0=E5=80=BC=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/mobile/panel/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/mobile/panel/index.vue b/core/core-frontend/src/views/mobile/panel/index.vue index 4db426bbd8..ab136a450f 100644 --- a/core/core-frontend/src/views/mobile/panel/index.vue +++ b/core/core-frontend/src/views/mobile/panel/index.vue @@ -87,7 +87,11 @@ const hanedleMessage = event => { mobileComponent['events'] = component['events'] mobileComponent['propValue'] = component['propValue'] mobileViewStyleSwitch(otherComponent) - useEmitt().emitter.emit('renderChart-' + component.id, otherComponent) + if (mobileComponent.component === 'VQuery') { + useEmitt().emitter.emit('renderChart-' + component.id, otherComponent) + } else if (mobileComponent.component === 'UserView') { + useEmitt().emitter.emit('calcData-' + component.id, otherComponent) + } } }