1234567891011121314151617181920212223242526 |
- /**
- * 功能:流程运行对话框
- *
- * 参数:
- * conf:配置为一个JSON
- *
- * dialogWidth:对话框的宽度。
- * dialogHeight:对话框高度。
- *
- * actDefId:流程定义ID。
- *
- */
- function TaskImageUserDialog(conf)
- {
- if(!conf) conf={};
- var url=__ctx + '/platform/bpm/processRun/processImage.ht?actInstId='+conf.actInstId;
- url=url.getNewUrl();
- DialogUtil.open({
- height:600,
- width: 800,
- title : '流程图',
- url: url,
- isResize: true
- });
- }
|