MsgDialog.js 455 B

1234567891011121314151617181920212223
  1. /**
  2. * 常用联系人组
  3. * @param conf
  4. */
  5. function LinkmanGroupDialog(conf)
  6. {
  7. if(!conf) conf={};
  8. var url=__ctx + '/platform/system/messageLinkmanGroup/dialog.ht';
  9. url=url.getNewUrl();
  10. DialogUtil.open({
  11. height:600,
  12. width: 800,
  13. title : '选择常用联系人组',
  14. url: url,
  15. isResize: true,
  16. //自定义参数
  17. params: conf.params,
  18. //回调函数
  19. sucCall:function(rtn){
  20. conf.callback.call(this,rtn);
  21. }
  22. });
  23. }