portal html css js resource

cmp-staff-invite.js 10.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. //接受企业邀请,注册「科袖」
  2. $(function() {
  3. var orgId = GetQueryString("aid"),
  4. orgName = GetQueryString("an"),
  5. orgLogo = GetQueryString("al");
  6. var sc = GetQueryString("sc");
  7. var companyNameVal, companyPhoneVal, companyscVal, companyPswVal1;
  8. var setname = false;
  9. var phonePass = false;
  10. var phoneCode = false;
  11. var setnewpwd = false;
  12. $(".cmpOrgName").text(orgName);
  13. $("#orgHeadLogo").attr("src", orgLogo);
  14. if(sc){
  15. initialVal()
  16. }
  17. /*校验注册按钮显示状态*/
  18. $('#cmpSettledul').on('keyup', "#companyName,#companyPhone,#imgCode,#companysc,#companyPsw1", function() {
  19. if($("#companyName").val() == "" || $("#companyPhone").val() == "" || $("#companysc").val() == "" || $("#companyPsw1").val() == "" || $("#imgCode").val() == "") {
  20. $("#companyRet").attr("disabled", true);
  21. } else {
  22. $("#companyRet").attr("disabled", false);
  23. }
  24. });
  25. /*校验邀请人名称*/
  26. $('#companyName').on('focus', function() {
  27. $(".msgCmp01 span").text("");
  28. });
  29. $('#companyName').on('blur', function() {
  30. checkName();
  31. });
  32. /*校验邀请人手机*/
  33. $('#companyPhone').on('focus', function() {
  34. $(".msgCmp02").text("");
  35. });
  36. $('#companyPhone').on('keyup', function() {
  37. checkPhone();
  38. });
  39. $('#companyPhone').on('blur', function() {
  40. if($(".msgCmp02").text()!=""){
  41. $(".msgCmp02").prev().addClass("frmmsg-warning");
  42. }else{
  43. $(".msgCmp02").prev().removeClass("frmmsg-warning");
  44. }
  45. });
  46. /*改变图形验证码*/
  47. $("#changImage").on("click",function(){
  48. $(this).attr("src","/ajax/PictureVC?"+new Date().getTime());
  49. })
  50. /*校验邀请验证码*/
  51. $('#companysc').on('focus', function() {
  52. $(".msgCmp03").text("");
  53. });
  54. $('#companysc').on('blur', function() {
  55. checkSc();
  56. });
  57. /*校验新密码*/
  58. $('#companyPsw1').on('focus', function() {
  59. $(".msgCmp04 span").text("");
  60. });
  61. $('#companyPsw1').on('blur', function() {
  62. checkNewPwd();
  63. });
  64. /*校验单选框*/
  65. // $(".cmpAgree").on("click", function() {
  66. // if($(this).hasClass("ifxuanze")) {
  67. // $(this).removeClass("ifxuanze");
  68. // $(this).attr("src", "images/business_button_xuanze_nor.png")
  69. // ifxuanze = false;
  70. // } else {
  71. // $(this).addClass("ifxuanze");
  72. // $(this).attr("src", "images/business_button_xuanze_hig.png");
  73. // ifxuanze = true;
  74. // }
  75. // })
  76. function initialVal() {
  77. $.ajax("/ajax/queryOrgByOrgInviteLogId", {
  78. type: "GET",
  79. data:{
  80. code:sc
  81. },
  82. success: function($data) {
  83. if($data.success || $data.data!=='') {
  84. var imgS="/images/default-icon.jpg"
  85. if($data.data.hasOrgLogo){
  86. imgS="/images/org/" + $data.data.id + ".jpg";
  87. }
  88. $("#orgHeadLogo").attr("src", imgS);
  89. orgId = $data.data.id;
  90. orgName = $data.data.name;
  91. orgLogo = imgS
  92. $(".cmpOrgName").text(orgName);
  93. } else {
  94. $.MsgBox.Alert('消息', '验证链接已失效')
  95. }
  96. }
  97. });
  98. }
  99. function checkName() {
  100. companyNameVal = $("#companyName").val();
  101. if(companyNameVal.length == "") {
  102. $(".msgCmp01").prev().addClass("frmmsg-warning");
  103. $(".msgCmp01 span").text("请输入您的真实姓名");
  104. } else {
  105. $(".msgCmp01").prev().removeClass("frmmsg-warning");
  106. $(".msgCmp01 span").text("");
  107. setname = true;
  108. }
  109. }
  110. function checkPhone() {
  111. companyPhoneVal = $("#companyPhone").val();
  112. $.ajax("/ajax/isReg?key=" + companyPhoneVal, {
  113. type: "GET",
  114. async: true,
  115. success: function($data) {
  116. if(companyPhoneVal.length == 0) {
  117. $(".msgCmp02").text("请输入您的手机号码");
  118. $("#getcode").attr("disabled", true);
  119. } else {
  120. var hunPhone = /^1[3|4|5|7|8]\d{9}$/;
  121. if(hunPhone.test(companyPhoneVal.trim())) {
  122. if($data.data == false) {
  123. $(".msgCmp02").text("该手机已注册账户,您可以直接登录");
  124. } else {
  125. $(".msgCmp02").prev().removeClass("frmmsg-warning");
  126. $(".msgCmp02").text("");
  127. phonePass = true;
  128. $("#getcode").attr("disabled", false);
  129. addEvent(btn, "click", handler); //手机必须验证正确,才执行
  130. }
  131. } else {
  132. phonePass = false;
  133. $(".msgCmp02").text("请输入正确的手机号码");
  134. $("#getcode").attr("disabled", true);
  135. }
  136. }
  137. }
  138. });
  139. }
  140. function checkSc() {
  141. companyscVal = $("#companysc").val();
  142. if(companyscVal.length == 0) {
  143. $(".msgCmp03").prev().addClass("frmmsg-warning");
  144. $(".msgCmp03").text("请输入您收到的验证码");
  145. phoneCode = false;
  146. } else {
  147. var d = /^[0-9a-zA-Z]{4}$/;
  148. if(d.test(companyscVal.trim())) {
  149. $(".msgCmp03").prev().removeClass("frmmsg-warning");
  150. $(".msgCmp03").text("");
  151. phoneCode = true;
  152. } else {
  153. $(".msgCmp03").prev().addClass("frmmsg-warning");
  154. $(".msgCmp03").text("验证码为4位数字,请检查后重试");
  155. phoneCode = false;
  156. }
  157. }
  158. }
  159. //手机发送验证码
  160. var btn = document.getElementById("getcode");
  161. var handler = function() {
  162. doClick();
  163. getPhoneCode(); //调用发送手机验证码接口
  164. removeEvent(btn, 'click', handler); //取消绑定该事件
  165. }
  166. function addEvent(obj, type, handler) {
  167. if(obj.addEventListener) {
  168. obj.addEventListener(type, handler, false);
  169. } else if(obj.attachEvent) {
  170. obj.attachEvent('on' + type, handler);
  171. }
  172. }
  173. function removeEvent(obj, type, handler) {
  174. if(obj.removeEventListener) {
  175. obj.removeEventListener(type, handler, false);
  176. } else if(obj.detachEvent) {
  177. obj.detachEvent("on" + type, handler);
  178. }
  179. }
  180. function doClick() {
  181. $("#getcode").html("60s后重新获取");
  182. $("#getcode").attr("disabled",true);
  183. var clickTime = new Date().getTime();
  184. var Timer = setInterval(function() {
  185. var nowTime = new Date().getTime();
  186. var second = Math.ceil(60 - (nowTime - clickTime) / 1000);
  187. if(second > 0) {
  188. $("#getcode").html(second + "s后重新获取");
  189. if(second==1) {
  190. $("#changImage").attr("src","/ajax/PictureVC?"+new Date().getTime());
  191. $("#imgCode").val("");
  192. }
  193. } else {
  194. clearInterval(Timer);
  195. $("#getcode").html("免费获取验证码");
  196. $("#getcode").attr("disabled",false);
  197. }
  198. }, 1000);
  199. }
  200. $("#imgCode").on("blur",function(){
  201. if($("#imgCode").val().length==0) {
  202. $(".msgImage").text("请输入图形验证码");
  203. return;
  204. }else if($("#imgCode").val().length==4){
  205. $(".msgImage").text("");
  206. $(this).removeClass("frmmsg-warning");
  207. }else{
  208. $(".msgImage").text("图形验证码4位");
  209. }
  210. })
  211. $("#imgCode").on("focus",function(){
  212. $(".msgImage").text("");
  213. $(this).removeClass("frmmsg-warning");
  214. })
  215. $("#goLogin").on("click",function(){
  216. location.href = 'cmp-staff-invite-log.html?aid='+orgId+'&an='+orgName+'&al='+orgLogo
  217. })
  218. function hasClass(obj, cls) {
  219. return obj.className.match(new RegExp('(\\s|^)' + cls + '(\\s|$)'));
  220. }
  221. function addClass(obj, cls) {
  222. if(!hasClass(obj, cls)) obj.className += " " + cls;
  223. }
  224. function removeClass(obj, cls) {
  225. if(hasClass(obj, cls)) {
  226. var reg = new RegExp('(\\s|^)' + cls + '(\\s|$)');
  227. obj.className = obj.className.replace(reg, ' ');
  228. }
  229. }
  230. var state;
  231. /*发送手机验证码*/
  232. function getPhoneCode() {
  233. if($("#imgCode").val().length==0) {
  234. $(".msgImage").text("请输入图形验证码");
  235. return;
  236. }else if($("#imgCode").val().length==4){
  237. $(".msgImage").text("");
  238. $(this).removeClass("frmmsg-warning");
  239. }else{
  240. $(".msgImage").text("图形验证码4位");
  241. return;
  242. }
  243. $.ajax("/ajax/regmobilephone", {
  244. type: "get",
  245. async: true,
  246. success: function(data) {
  247. if(data.success) {
  248. state = data.data;
  249. doClick();
  250. }else{
  251. if(data.code==20001) {
  252. $(".msgImage").text("请输入正确的图形验证码");
  253. $("#changImage").attr("src","/ajax/PictureVC?"+new Date().getTime());
  254. }
  255. }
  256. },
  257. data: {
  258. "mobilePhone": $("#companyPhone").val(),
  259. "vcode":$('#imgCode').val(),
  260. },
  261. dataType: 'json'
  262. });
  263. }
  264. function checkNewPwd() {
  265. companyPswVal1 = $("#companyPsw1").val();
  266. if(companyPswVal1.length < 6) {
  267. $(".msgCmp04").prev().addClass("frmmsg-warning");
  268. $(".msgCmp04 span").text("密码由6-24个字符组成,区分大小写");
  269. } else {
  270. $(".msgCmp04").prev().removeClass("frmmsg-warning");
  271. $(".msgCmp04 span").text("");
  272. setnewpwd = true;
  273. }
  274. }
  275. function checkNewPwd2() {
  276. companyPswVal2 = $("#companyPsw2").val();
  277. if(companyPswVal2.length < 6) {
  278. $(".msgCmp05").prev().addClass("frmmsg-warning");
  279. $(".msgCmp05 span").text("密码由6-24个字符组成,区分大小写");
  280. } else if(companyPswVal1 != companyPswVal2) {
  281. $(".msgCmp05").prev().addClass("frmmsg-warning");
  282. $(".msgCmp05 span").text("两次输入不一致,请重新输入");
  283. } else {
  284. $(".msgCmp05").prev().removeClass("frmmsg-warning");
  285. $(".msgCmp05 span").text("");
  286. setnewpwd2 = true;
  287. }
  288. }
  289. function userReg() {
  290. $.ajax("/ajax/mobileReg", {
  291. type: "POST",
  292. async: true,
  293. data: {
  294. "state": state,
  295. "mobilePhone": $("#companyPhone").val(),
  296. "validateCode": $("#companysc").val(),
  297. "password": $("#companyPsw1").val(),
  298. "name" :$("#companyName").val()
  299. },
  300. dataType: 'json',
  301. success: function(data) {
  302. if(data.success) {
  303. var pid = data.data;
  304. $.ajax("/ajax/professor/joinAndPassOrgAuth", {
  305. type: "POST",
  306. async: true,
  307. data: {
  308. "pid": pid,
  309. "oid": orgId
  310. },
  311. success: function(res) {
  312. location.href = 'cmp-staff-invite-log.html?step=2&aid='+orgId+'&an='+orgName+'&al='+orgLogo
  313. }
  314. })
  315. }else{
  316. if(data.code==-1){
  317. $.MsgBox.Alert('消息', '验证超时');
  318. }else if(data.code==-2){
  319. $(".msgCmp03 span").text('手机号与验证手机不匹配');
  320. }else if(data.code==-3){
  321. $(".msgCmp03 span").text('验证码错误,请检查后重试')
  322. }
  323. }
  324. }
  325. });
  326. }
  327. /*手机注册*/
  328. $("#companyRet").click(function(){
  329. if(setname==true && phonePass==true && phoneCode==true && setnewpwd==true) {
  330. userReg();
  331. }
  332. })
  333. })