@xuda.io/runtime-bundle 1.0.268 → 1.0.270
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.
|
@@ -34184,7 +34184,7 @@ func.UI.screen.execute_xu_functions = async function (
|
|
|
34184
34184
|
is_val_dynamic_field,
|
|
34185
34185
|
reference_source_obj
|
|
34186
34186
|
};
|
|
34187
|
-
let _parent_info =
|
|
34187
|
+
let _parent_info = _.cloneDeep(_parent_info) || {}
|
|
34188
34188
|
_parent_info.iterate_info = iterate_info
|
|
34189
34189
|
// if (parent_infoP) {
|
|
34190
34190
|
// _parent_info = iterate_info;
|
|
@@ -35145,7 +35145,7 @@ func.UI.screen.create_container = function (
|
|
|
35145
35145
|
console.error(e);
|
|
35146
35146
|
}
|
|
35147
35147
|
|
|
35148
|
-
if (parent_infoP
|
|
35148
|
+
if (parent_infoP?.iterate_info) {
|
|
35149
35149
|
$div.data().xuData.iterate_info = parent_infoP.iterate_info;
|
|
35150
35150
|
}
|
|
35151
35151
|
|
|
@@ -35595,18 +35595,7 @@ func.UI.screen.render_ui_tree = async function (
|
|
|
35595
35595
|
if (!nodeP || !nodeP.children) {
|
|
35596
35596
|
return await done($divP);
|
|
35597
35597
|
}
|
|
35598
|
-
|
|
35599
|
-
// if (!is_mobile || (is_mobile && paramsP.udfTypeP !== "grid")) {
|
|
35600
|
-
// if (
|
|
35601
|
-
// $divP.children().length &&
|
|
35602
|
-
// !$($divP.children()[0]).hasClass("udf_label") &&
|
|
35603
|
-
// !parent_infoP &&
|
|
35604
|
-
// !$divP.find("ion-refresher").length
|
|
35605
|
-
// ) {
|
|
35606
|
-
// await done($divP);
|
|
35607
|
-
// return;
|
|
35608
|
-
// }
|
|
35609
|
-
// }
|
|
35598
|
+
|
|
35610
35599
|
|
|
35611
35600
|
if (before_record_function) {
|
|
35612
35601
|
await before_record_function();
|
|
@@ -35617,7 +35606,7 @@ func.UI.screen.render_ui_tree = async function (
|
|
|
35617
35606
|
SESSION_ID,
|
|
35618
35607
|
$divP,
|
|
35619
35608
|
nodeP.children[key],
|
|
35620
|
-
|
|
35609
|
+
parent_infoP,
|
|
35621
35610
|
paramsP,
|
|
35622
35611
|
jobNoP,
|
|
35623
35612
|
is_skeleton,
|