Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

qq_bind.js 1.2KB

1234567891011121314151617181920212223242526272829303132333435
  1. function un_qq_code()
  2. {
  3. layer.confirm('您确定要解绑关联QQ吗?', {
  4. title: false,
  5. btn: ['确定', '取消'] //按钮
  6. }, function(){
  7. layer_loading('正在处理');
  8. $.ajax({
  9. url : un_qq_code_url,
  10. type: 'POST',
  11. dataType: 'JSON',
  12. data: {fmdo:'jiebang'},
  13. success: function(res){
  14. layer.closeAll();
  15. if (1 == res.code) {
  16. layer.msg(res.msg, {icon: 1, time: 1000}, function(){
  17. window.location.reload();
  18. });
  19. } else {
  20. layer.msg(res.msg, {icon: 2, time: 3000});
  21. }
  22. },
  23. error: function(e){
  24. layer.closeAll();
  25. layer.alert(e.responseText, {icon: 5, title:false,time: 3000});
  26. }
  27. });
  28. });
  29. }
  30. function bind_qq_code()
  31. {
  32. var b = 720, c = 450;
  33. window.open(bind_qq_code_url, '账户关联', "width=" + b + ",height=" + c + ",top=" + ((window.screen.availHeight - 30 - c) / 2) + ",left=" + ((window.screen.availWidth - 10 - b) / 2) + ",menubar=0,scrollbars=1,resizable=1,status=1,titlebar=0,toolbar=0,location=1");
  34. }