1234567891011121314151617181920212223242526272829 |
- /*
- * 自定义查询对话框
- */
- function BpmQueryDialog(conf)
- {
- if(!conf) conf={};
- var url=__ctx +"/platform/bpm/bpmFormQuery/dialog.ht";
- var dialogWidth=460;
- var dialogHeight=400;
- $.extend(conf, {dialogWidth:dialogWidth ,dialogHeight:dialogHeight ,help:0,status:0,scroll:1,center:1});
-
-
- /*KILLDIALOG*/
- DialogUtil.open({
- height:conf.dialogHeight,
- width: conf.dialogWidth,
- title : '',
- url: url,
- isResize: true,
- //自定义参数
- conf: conf,
- sucCall:function(rtn){
- if(rtn!=undefined){
- conf.callback(rtn);
- }
-
- }
- });
- }
|