mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-01-03 14:18:17 +00:00
【issues/8426】解决JPopup组件传参不能接收
This commit is contained in:
parent
2191f5d48c
commit
0308b0597c
@ -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);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user