@xuda.io/runtime-bundle 1.0.751 → 1.0.752
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -12651,6 +12651,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12651
12651
|
value = false;
|
|
12652
12652
|
}
|
|
12653
12653
|
}
|
|
12654
|
+
if (field_prop.props.fieldType === 'object' && $elm.attr('type') === 'text' && val.value.split('.').length > 1) {
|
|
12655
|
+
let str = val.value.replace(bind_field_id, '(' + JSON.stringify(value) + ')');
|
|
12656
|
+
value = eval(str);
|
|
12657
|
+
}
|
|
12654
12658
|
} else {
|
|
12655
12659
|
value = val.value;
|
|
12656
12660
|
}
|
|
@@ -10361,6 +10361,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10361
10361
|
value = false;
|
|
10362
10362
|
}
|
|
10363
10363
|
}
|
|
10364
|
+
if (field_prop.props.fieldType === 'object' && $elm.attr('type') === 'text' && val.value.split('.').length > 1) {
|
|
10365
|
+
let str = val.value.replace(bind_field_id, '(' + JSON.stringify(value) + ')');
|
|
10366
|
+
value = eval(str);
|
|
10367
|
+
}
|
|
10364
10368
|
} else {
|
|
10365
10369
|
value = val.value;
|
|
10366
10370
|
}
|