@xuda.io/runtime-bundle 1.0.312 → 1.0.314
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.
|
@@ -33573,7 +33573,7 @@ func.UI.screen.screen_loading_done = async function (SESSION_ID, paramsP, $div,
|
|
|
33573
33573
|
|
|
33574
33574
|
func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, parent_infoP, paramsP, jobNoP, is_skeleton, keyP, is_mainP, parent_nodeP, check_existP, $root_container) {
|
|
33575
33575
|
if (!is_skeleton) {
|
|
33576
|
-
|
|
33576
|
+
var _session = SESSION_OBJ[SESSION_ID];
|
|
33577
33577
|
var _ds = _session.DS_GLB[paramsP.dsSessionP];
|
|
33578
33578
|
}
|
|
33579
33579
|
var prop;
|
|
@@ -34230,14 +34230,20 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34230
34230
|
[`xu-single-view`]: async function () {
|
|
34231
34231
|
var exist_elm_obj = get_element_info();
|
|
34232
34232
|
var $div = exist_elm_obj.div;
|
|
34233
|
-
|
|
34233
|
+
|
|
34234
|
+
if (!_session.running_$div) {
|
|
34235
|
+
_session.running_$div = [];
|
|
34236
|
+
}
|
|
34237
|
+
|
|
34238
|
+
_session.running_$div.push($div);
|
|
34239
|
+
|
|
34234
34240
|
if (!exist_elm_obj.div) {
|
|
34235
34241
|
var $wrapper = $('<div>');
|
|
34236
34242
|
$div = func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, 'div', $wrapper, '');
|
|
34237
34243
|
|
|
34238
|
-
if (paramsP.is_panelP) {
|
|
34239
|
-
|
|
34240
|
-
}
|
|
34244
|
+
// if (paramsP.is_panelP) {
|
|
34245
|
+
// var id = $div.attr('id');
|
|
34246
|
+
// }
|
|
34241
34247
|
|
|
34242
34248
|
if (!$div) return;
|
|
34243
34249
|
|