【issues/8426】解决JPopup组件传参不能接收

pull/8722/head
JEECG 2025-08-12 14:08:18 +08:00
parent 2191f5d48c
commit 0308b0597c
1 changed files with 2 additions and 1 deletions

View File

@ -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/8426JPopup
if (key in queryParam.value) {
if (str && str.startsWith("'") && str.endsWith("'")) {
str = str.substring(1, str.length - 1);
}