TaskImageUserDialog.js 474 B

1234567891011121314151617181920212223242526
  1. /**
  2. * 功能:流程运行对话框
  3. *
  4. * 参数:
  5. * conf:配置为一个JSON
  6. *
  7. * dialogWidth:对话框的宽度。
  8. * dialogHeight:对话框高度。
  9. *
  10. * actDefId:流程定义ID。
  11. *
  12. */
  13. function TaskImageUserDialog(conf)
  14. {
  15. if(!conf) conf={};
  16. var url=__ctx + '/platform/bpm/processRun/processImage.ht?actInstId='+conf.actInstId;
  17. url=url.getNewUrl();
  18. DialogUtil.open({
  19. height:600,
  20. width: 800,
  21. title : '流程图',
  22. url: url,
  23. isResize: true
  24. });
  25. }