portal html css js resource

cmp-setBind.js 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. //账号绑定
  2. $(function() {
  3. var emailCookieshow;
  4. var orgid = $.cookie('orgId');
  5. var orgEmail = $.cookie('orgEmail');
  6. var setemail = false;
  7. $(".bindEmailbtn").click(function() {
  8. modelOpen();
  9. })
  10. $(".modelClosebtn").click(function() {
  11. modelClose();
  12. })
  13. /*回填cookie邮件*/
  14. showEmail();
  15. /*校验邮箱按钮显示状态*/
  16. $('#companyEmail').on('keyup', function() {
  17. if($(this).val() == "") {
  18. $("#saveSubmit").attr("disabled", true);
  19. } else {
  20. $("#saveSubmit").attr("disabled", false);
  21. }
  22. });
  23. /*校验企业邮箱*/
  24. $('#companyEmail').on('focus', function() {
  25. $(".msgBind1 span").text("");
  26. });
  27. $('#companyEmail').on('blur', function() {
  28. checkEmail();
  29. });
  30. /*发送验证邮件*/
  31. $('#saveSubmit').on('click', function() {
  32. reqBindOrgMail();
  33. });
  34. function emailhome(emailset) {
  35. var emailq = emailset.replace(/@.*/, "");
  36. var emailh = emailset.replace(emailq, "");
  37. if(emailq.length >= 6) {
  38. emailCookieshow = emailq.substring(emailq.length - 4, 0) + "****" + emailh;
  39. }
  40. if(emailq.length == 5) {
  41. emailCookieshow = emailq.substring(emailq.length - 3, 0) + "***" + emailh;
  42. }
  43. if(emailq.length == 4) {
  44. emailCookieshow = emailq.substring(emailq.length - 2, 0) + "**" + emailh;
  45. }
  46. if(emailq.length == 3) {
  47. emailCookieshow = emailq.substring(emailq.length - 1, 0) + "*" + emailh;
  48. }
  49. if(emailq.length < 3) {
  50. emailCookieshow = emailq + emailh;
  51. }
  52. return emailCookieshow;
  53. }
  54. function checkEmail() {
  55. companyEmailVal = $("#companyEmail").val();
  56. var gunf = /^([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/;
  57. if(gunf.test(companyEmailVal.trim())) {
  58. $.ajax("/ajax/isRegOrg", {
  59. data: {
  60. "email": companyEmailVal
  61. },
  62. type: "GET",
  63. dataType: 'json',
  64. async: false,
  65. success: function($data) {
  66. console.log($data)
  67. if($data.data == false) {
  68. $(".msgBind1").prev().addClass("frmmsg-warning");
  69. $(".msgBind1 span").text("该邮箱已绑定,请使用其他邮箱");
  70. } else {
  71. $(".msgBind1").prev().removeClass("frmmsg-warning");
  72. $(".msgBind1 span").text("");
  73. setemail = true;
  74. }
  75. },
  76. error: function() {
  77. $.MsgBox.Alert('提示', '服务器请求失败')
  78. },
  79. });
  80. } else {
  81. $(".msgBind1").prev().addClass("frmmsg-warning");
  82. $(".msgBind1 span").text("请输入正确是邮箱地址");
  83. }
  84. }
  85. function reqBindOrgMail() {
  86. if(setemail) {
  87. $.ajax("/ajax/reqBindOrgMail", {
  88. data: {
  89. "id": orgid,
  90. "mail": companyEmailVal
  91. },
  92. type: "GET",
  93. dataType: 'json',
  94. async: false,
  95. success: function($data) {
  96. console.log($data)
  97. if($data.data) {
  98. $("#emailone").addClass("displayNone");
  99. $("#emailtwo").removeClass("displayNone");
  100. $("#emailShow").text(companyEmailVal);
  101. $("#emailGo").on("click", function() {
  102. var url = companyEmailVal.split('@')[1];
  103. for(var j in hash) {
  104. if(hash[url]==undefined){
  105. window.open("http://mail." + url);
  106. }else{
  107. $(this).attr("href", hash[url]);
  108. window.open(hash[url]);
  109. }
  110. }
  111. location.reload(true);
  112. });
  113. } else {
  114. $.MsgBox.Alert('提示', '发送邮箱验证失败')
  115. }
  116. },
  117. error: function() {
  118. $.MsgBox.Alert('提示', '服务器请求失败')
  119. },
  120. });
  121. }else{
  122. checkEmail();
  123. }
  124. }
  125. function showEmail() {
  126. $.ajax("/ajax/orgUser/orgEmail", {
  127. data: {
  128. "id": orgid
  129. },
  130. type: "GET",
  131. dataType: 'json',
  132. async: false,
  133. success: function($data) {
  134. console.log($data)
  135. if($data.success) {
  136. var orgEmail = $data.data;
  137. emailhome(orgEmail);
  138. $("#orgEmail").text(emailCookieshow);
  139. }
  140. },
  141. error: function() {
  142. $.MsgBox.Alert('提示', '服务器请求失败')
  143. },
  144. });
  145. }
  146. })