提交 fce1478d 编写于 作者: NoSubject's avatar NoSubject

快速连接首页定位

上级 f2cb0e72
......@@ -1827,7 +1827,19 @@ o2.xDesktop.Default.Lnk = new Class({
setEvent: function(){
this.node.addEvents({
"click": function(){
layout.openApplication(null, this.data.name, this.data.options);
if (this.data.name=="Homepage"){
var name = this.data.name;
var options = this.data.options;
if (layout.config.indexPage && layout.config.indexPage.enable && layout.config.indexPage.portal){
name = "portal.Portal";
var appId = "portal.Portal"+layout.config.indexPage.portal;
options = {"name": "portal.Portal", "portalId": layout.config.indexPage.portal, "pageId": layout.config.indexPage.page, "appId": appId};
}
layout.openApplication(null, name, options);
}else{
layout.openApplication(null, this.data.name, this.data.options);
}
}.bind(this),
"mouseover": function(){
this.actionNode.fade("in");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册