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); }