xiongzhu 4 years ago
parent
commit
b7b43b9562
1 changed files with 8 additions and 2 deletions
  1. 8 2
      o2web/source/o2_core/o2/xDesktop/Default.js

+ 8 - 2
o2web/source/o2_core/o2/xDesktop/Default.js

@@ -2740,10 +2740,16 @@ o2.xDesktop.Default.Lnk = new Class({
                         options = {"name": "portal.Portal", "portalId": layout.config.indexPage.portal, "pageId": layout.config.indexPage.page, "appId": appId};
                     }
                     layout.openApplication(null, name, options);
-                    console.log('layout.openApplication', null, name, options);
+                    console.log('layout.openApplication', name);
+                    if (this.options) {
+                        console.log(JSON.stringify(this.options));
+                    }
                 }else{
                     layout.openApplication(null, this.data.name, this.data.options);
-                    console.log('layout.openApplication', null, this.data.name, this.data.options);
+                    console.log('layout.openApplication', this.data.name);
+                    if (this.data.options) {
+                        console.log(JSON.stringify(this.data.options));
+                    }
                 }
             }.bind(this),
             "mouseover": function(){