var a=_g().getWidgetByName("time").getValue();
var title=_g().getWidgetByName('预警信息标题').getCellValue("A1");
//模板路径
var url = encodeURI(encodeURI("地址&op=form_adaptive&level=1"+"&time="+ a));
//窗体
var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");
//将窗体的src属性设置为模板路径
$iframe.attr("src", url);
//窗体的属性
var o = {
title: title, //标题
destroyOnClose:true, // 是否在关闭对话框的时候将对话框从dom中移除
width: "60%", //宽度
height: "80%", //高度
//closable:true, //是否显示关闭按钮,默认true
//confirm:true, //是否添加确认取消按钮,默认false
//draggable:true //是否可拖动,默认true
};
//弹出窗体
FR.showDialog(o.title, o.width, o.height, $iframe, o,);
$('.bi-header-background').css("background-color","rgb(52,65,71)"); // 对话框背景颜色
$('.bi-font-bold').css("color","white"); // 对话框标字体颜色
$('.bi-font-bold').css("font-size","18px"); // 对话框字体大小
$('.b-font').css("color","white"); // 对话框关闭颜色
$('.b-font').css("font-size","25px"); // 对话框关闭大小
参考链接 - https://help.fanruan.com/finereport10.0/doc-view-3633.html