From 34ea49b15a4246c6832f2f5ef02a9ccd987a0b69 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Tue, 28 Nov 2023 15:01:24 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=A4=96=E9=83=A8?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E6=95=B0=E5=AD=97=E5=8C=BA=E9=97=B4=E8=BF=87?= =?UTF-8?q?=E6=BB=A4=E7=BB=84=E4=BB=B6=E6=95=B0=E5=80=BC=E5=8C=B9=E9=85=8D?= =?UTF-8?q?=E4=B8=8D=E6=AD=A3=E7=A1=AE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/frontend/src/store/index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/frontend/src/store/index.js b/core/frontend/src/store/index.js index 28b151f961..3dd54769e1 100644 --- a/core/frontend/src/store/index.js +++ b/core/frontend/src/store/index.js @@ -509,7 +509,11 @@ const data = { currentFilters.push(condition) } if (element.type === 'custom' && element.id === targetViewId) { // 过滤组件处理 - element.options.value = paramValueStr + if (element.component === 'de-number-range') { + element.options.value = paramValue + } else { + element.options.value = paramValueStr + } } }) if (element.type === 'view') {