@xuda.io/runtime-bundle 1.0.282 → 1.0.283
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
|
@@ -14209,7 +14209,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
14209
14209
|
let new_arr = reference_source_obj.ret.value;
|
|
14210
14210
|
if (field_prop.props.fieldType === 'object' && !val_is_reference_field) {
|
|
14211
14211
|
let obj_item = new_arr[arr_idx];
|
|
14212
|
-
let e_exp = bind_field_exp.replace(
|
|
14212
|
+
let e_exp = bind_field_exp.replace(bind_field_id, 'obj_item');
|
|
14213
14213
|
let new_val = eval(e_exp + `="${value}"`);
|
|
14214
14214
|
new_arr[arr_idx] = obj_item;
|
|
14215
14215
|
} else {
|
|
@@ -11619,7 +11619,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
11619
11619
|
let new_arr = reference_source_obj.ret.value;
|
|
11620
11620
|
if (field_prop.props.fieldType === 'object' && !val_is_reference_field) {
|
|
11621
11621
|
let obj_item = new_arr[arr_idx];
|
|
11622
|
-
let e_exp = bind_field_exp.replace(
|
|
11622
|
+
let e_exp = bind_field_exp.replace(bind_field_id, 'obj_item');
|
|
11623
11623
|
let new_val = eval(e_exp + `="${value}"`);
|
|
11624
11624
|
new_arr[arr_idx] = obj_item;
|
|
11625
11625
|
} else {
|