提交 741c4747 编写于 作者: U unknown

修复门户的移动端模式预览打开PC表单的问题

上级 92213abe
......@@ -684,8 +684,13 @@ MWF.xApplication.portal.PageDesigner.Module.Page = MWF.PCPage = new Class({
return this.data;
},
preview: function(){
var url = "../x_desktop/portal.html?id="+this.json.application+"&page="+this.json.id;
window.open(o2.filterUrl(url));
if( this.designer.currentDesignerMode === "Mobile" ){
var url = "../x_desktop/portalmobile.html?id="+this.json.application+"&page="+this.json.id;
window.open(o2.filterUrl(url));
}else{
var url = "../x_desktop/portal.html?id="+this.json.application+"&page="+this.json.id;
window.open(o2.filterUrl(url));
}
// MWF.xDesktop.requireApp("process.FormDesigner", "Preview", function(){
//
// if (this.options.mode=="Mobile"){
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册