From 80b5137a7203864dab3d14d0359fb185946956b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=98=89=E8=B1=AA?= <42510293+ziyujiahao@users.noreply.github.com> Date: Wed, 6 Aug 2025 17:36:09 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF=E3=80=81?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20=E7=9C=8B=E6=9D=BF?= =?UTF-8?q?=E7=9A=84=E5=A4=96=E9=83=A8=E5=8F=82=E6=95=B0=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=80=BC=E5=90=91=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=20SQL=20=E4=BC=A0=E5=8F=82=E6=97=B6=E6=8B=BC=E6=8E=A5=E7=9A=84?= =?UTF-8?q?SQL=E5=AD=98=E5=9C=A8=E9=97=AE=E9=A2=98=EF=BC=8C=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E6=95=B0=E6=8D=AE=E6=97=A0=E6=B3=95=E6=AD=A3=E5=B8=B8?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E3=80=82=20#16577=20(#16628)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/store/modules/data-visualization/dvMain.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts index 044bfed52a..b5c98a51e9 100644 --- a/core/core-frontend/src/store/modules/data-visualization/dvMain.ts +++ b/core/core-frontend/src/store/modules/data-visualization/dvMain.ts @@ -1214,6 +1214,9 @@ export const dvMainStore = defineStore('dataVisualization', { paramValue = [paramValue] operator = 'eq' } else if (paramValue && Array.isArray(paramValue)) { + if (paramValue.length === 1) { + operator = 'eq' + } paramValueStr = '' paramValue.forEach((innerValue, index) => { if (index === 0) {