From 0308b0597ce99b4cd073557302f652df266c0cb6 Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Tue, 12 Aug 2025 14:08:18 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90issues/8426=E3=80=91=E8=A7=A3=E5=86=B3?= =?UTF-8?q?JPopup=E7=BB=84=E4=BB=B6=E4=BC=A0=E5=8F=82=E4=B8=8D=E8=83=BD?= =?UTF-8?q?=E6=8E=A5=E6=94=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jeecgboot-vue3/src/components/jeecg/OnLine/hooks/usePopBiz.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jeecgboot-vue3/src/components/jeecg/OnLine/hooks/usePopBiz.ts b/jeecgboot-vue3/src/components/jeecg/OnLine/hooks/usePopBiz.ts index f172d23b0..41c774686 100644 --- a/jeecgboot-vue3/src/components/jeecg/OnLine/hooks/usePopBiz.ts +++ b/jeecgboot-vue3/src/components/jeecg/OnLine/hooks/usePopBiz.ts @@ -765,7 +765,8 @@ export function usePopBiz(ob, tableRef?) { if (props.param) { Object.keys(props.param).map((key) => { let str = props.param[key]; - if (key in queryParam) { + //【issues/8426】解决JPopup组件传参不能接收 + if (key in queryParam.value) { if (str && str.startsWith("'") && str.endsWith("'")) { str = str.substring(1, str.length - 1); }