@xuda.io/runtime-bundle 1.0.988 → 1.0.990
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.
|
@@ -32142,6 +32142,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32142
32142
|
.appendTo($container)
|
|
32143
32143
|
.hide();
|
|
32144
32144
|
let original_data_obj = {
|
|
32145
|
+
not_rendered: true,
|
|
32145
32146
|
$container: cloned_$div,
|
|
32146
32147
|
nodeP: _.cloneDeep(nodeP),
|
|
32147
32148
|
parent_infoP,
|
|
@@ -32176,22 +32177,25 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32176
32177
|
func.events.delete_job(SESSION_ID, jobNoP);
|
|
32177
32178
|
return { delete_job: jobNoP };
|
|
32178
32179
|
}
|
|
32179
|
-
|
|
32180
|
-
|
|
32181
|
-
|
|
32182
|
-
|
|
32183
|
-
|
|
32184
|
-
|
|
32185
|
-
|
|
32186
|
-
|
|
32187
|
-
|
|
32188
|
-
|
|
32189
|
-
|
|
32190
|
-
|
|
32191
|
-
|
|
32192
|
-
|
|
32193
|
-
|
|
32194
|
-
|
|
32180
|
+
|
|
32181
|
+
let new_$div = original_data_obj.$container.clone(true);
|
|
32182
|
+
|
|
32183
|
+
if (original_data_obj.not_rendered) {
|
|
32184
|
+
new_$div = await func.UI.screen.render_ui_tree(
|
|
32185
|
+
SESSION_ID,
|
|
32186
|
+
$elm, //original_data_obj.$container,
|
|
32187
|
+
_.cloneDeep(original_data_obj.nodeP),
|
|
32188
|
+
original_data_obj.parent_infoP,
|
|
32189
|
+
original_data_obj.paramsP,
|
|
32190
|
+
jobNoP,
|
|
32191
|
+
null,
|
|
32192
|
+
original_data_obj.keyP,
|
|
32193
|
+
null,
|
|
32194
|
+
original_data_obj.parent_nodeP,
|
|
32195
|
+
null,
|
|
32196
|
+
original_data_obj.$root_container,
|
|
32197
|
+
);
|
|
32198
|
+
}
|
|
32195
32199
|
|
|
32196
32200
|
new_$div.data().xuData.original_data_obj = original_data_obj;
|
|
32197
32201
|
new_$div.data().xuData.xurender_node = $elm.clone(true);
|