123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- $(function() {
- var orgId = GetQueryString("aid"),
- orgName = GetQueryString("an"),
- orgLogo = GetQueryString("al");
- var sc = GetQueryString("sc");
- var companyNameVal, companyPhoneVal, companyscVal, companyPswVal1;
- var setname = false;
- var phonePass = false;
- var phoneCode = false;
- var setnewpwd = false;
-
- $(".cmpOrgName").text(orgName);
- $("#orgHeadLogo").attr("src", orgLogo);
- if(sc){
- initialVal()
- }
-
- $('#cmpSettledul').on('keyup', "#companyName,#companyPhone,#imgCode,#companysc,#companyPsw1", function() {
- if($("#companyName").val() == "" || $("#companyPhone").val() == "" || $("#companysc").val() == "" || $("#companyPsw1").val() == "" || $("#imgCode").val() == "") {
- $("#companyRet").attr("disabled", true);
- } else {
- $("#companyRet").attr("disabled", false);
- }
- });
-
- $('#companyName').on('focus', function() {
- $(".msgCmp01 span").text("");
- });
- $('#companyName').on('blur', function() {
- checkName();
- });
-
- $('#companyPhone').on('focus', function() {
- $(".msgCmp02").text("");
- });
- $('#companyPhone').on('keyup', function() {
- checkPhone();
- });
- $('#companyPhone').on('blur', function() {
- if($(".msgCmp02").text()!=""){
- $(".msgCmp02").prev().addClass("frmmsg-warning");
- }else{
- $(".msgCmp02").prev().removeClass("frmmsg-warning");
- }
- });
-
- $("#changImage").on("click",function(){
- $(this).attr("src","/ajax/PictureVC?"+new Date().getTime());
- })
-
- $('#companysc').on('focus', function() {
- $(".msgCmp03").text("");
- });
- $('#companysc').on('blur', function() {
- checkSc();
- });
-
- $('#companyPsw1').on('focus', function() {
- $(".msgCmp04 span").text("");
- });
- $('#companyPsw1').on('blur', function() {
- checkNewPwd();
- });
-
- function initialVal() {
- $.ajax("/ajax/queryOrgByOrgInviteLogId", {
- type: "GET",
- data:{
- code:sc
- },
- success: function($data) {
- if($data.success || $data.data!=='') {
- var imgS="/images/default-icon.jpg"
- if($data.data.hasOrgLogo){
- imgS="/images/org/" + $data.data.id + ".jpg";
- }
- $("#orgHeadLogo").attr("src", imgS);
- orgId = $data.data.id;
- orgName = $data.data.name;
- orgLogo = imgS
- $(".cmpOrgName").text(orgName);
- } else {
- $.MsgBox.Alert('消息', '验证链接已失效')
- }
- }
- });
- }
- function checkName() {
- companyNameVal = $("#companyName").val();
- if(companyNameVal.length == "") {
- $(".msgCmp01").prev().addClass("frmmsg-warning");
- $(".msgCmp01 span").text("请输入您的真实姓名");
- } else {
- $(".msgCmp01").prev().removeClass("frmmsg-warning");
- $(".msgCmp01 span").text("");
- setname = true;
- }
- }
- function checkPhone() {
- companyPhoneVal = $("#companyPhone").val();
- $.ajax("/ajax/isReg?key=" + companyPhoneVal, {
- type: "GET",
- async: true,
- success: function($data) {
- if(companyPhoneVal.length == 0) {
- $(".msgCmp02").text("请输入您的手机号码");
- $("#getcode").attr("disabled", true);
- } else {
- var hunPhone = /^1[3|4|5|7|8]\d{9}$/;
- if(hunPhone.test(companyPhoneVal.trim())) {
- if($data.data == false) {
- $(".msgCmp02").text("该手机已注册账户,您可以直接登录");
- } else {
- $(".msgCmp02").prev().removeClass("frmmsg-warning");
- $(".msgCmp02").text("");
- phonePass = true;
- $("#getcode").attr("disabled", false);
- addEvent(btn, "click", handler);
- }
- } else {
- phonePass = false;
- $(".msgCmp02").text("请输入正确的手机号码");
- $("#getcode").attr("disabled", true);
- }
- }
- }
- });
- }
- function checkSc() {
- companyscVal = $("#companysc").val();
- if(companyscVal.length == 0) {
- $(".msgCmp03").prev().addClass("frmmsg-warning");
- $(".msgCmp03").text("请输入您收到的验证码");
- phoneCode = false;
- } else {
- var d = /^[0-9a-zA-Z]{4}$/;
- if(d.test(companyscVal.trim())) {
- $(".msgCmp03").prev().removeClass("frmmsg-warning");
- $(".msgCmp03").text("");
- phoneCode = true;
- } else {
- $(".msgCmp03").prev().addClass("frmmsg-warning");
- $(".msgCmp03").text("验证码为4位数字,请检查后重试");
- phoneCode = false;
- }
- }
- }
-
- var btn = document.getElementById("getcode");
- var handler = function() {
- doClick();
- getPhoneCode();
- removeEvent(btn, 'click', handler);
- }
- function addEvent(obj, type, handler) {
- if(obj.addEventListener) {
- obj.addEventListener(type, handler, false);
- } else if(obj.attachEvent) {
- obj.attachEvent('on' + type, handler);
- }
- }
- function removeEvent(obj, type, handler) {
- if(obj.removeEventListener) {
- obj.removeEventListener(type, handler, false);
- } else if(obj.detachEvent) {
- obj.detachEvent("on" + type, handler);
- }
- }
- function doClick() {
- $("#getcode").html("60s后重新获取");
- $("#getcode").attr("disabled",true);
- var clickTime = new Date().getTime();
- var Timer = setInterval(function() {
- var nowTime = new Date().getTime();
- var second = Math.ceil(60 - (nowTime - clickTime) / 1000);
- if(second > 0) {
- $("#getcode").html(second + "s后重新获取");
- if(second==1) {
- $("#changImage").attr("src","/ajax/PictureVC?"+new Date().getTime());
- $("#imgCode").val("");
- }
- } else {
- clearInterval(Timer);
- $("#getcode").html("免费获取验证码");
- $("#getcode").attr("disabled",false);
- }
- }, 1000);
- }
- $("#imgCode").on("blur",function(){
- if($("#imgCode").val().length==0) {
- $(".msgImage").text("请输入图形验证码");
- return;
- }else if($("#imgCode").val().length==4){
- $(".msgImage").text("");
- $(this).removeClass("frmmsg-warning");
- }else{
- $(".msgImage").text("图形验证码4位");
- }
- })
- $("#imgCode").on("focus",function(){
- $(".msgImage").text("");
- $(this).removeClass("frmmsg-warning");
- })
-
- $("#goLogin").on("click",function(){
- location.href = 'cmp-staff-invite-log.html?aid='+orgId+'&an='+orgName+'&al='+orgLogo
- })
- function hasClass(obj, cls) {
- return obj.className.match(new RegExp('(\\s|^)' + cls + '(\\s|$)'));
- }
- function addClass(obj, cls) {
- if(!hasClass(obj, cls)) obj.className += " " + cls;
- }
- function removeClass(obj, cls) {
- if(hasClass(obj, cls)) {
- var reg = new RegExp('(\\s|^)' + cls + '(\\s|$)');
- obj.className = obj.className.replace(reg, ' ');
- }
- }
-
- var state;
-
- function getPhoneCode() {
- if($("#imgCode").val().length==0) {
- $(".msgImage").text("请输入图形验证码");
- return;
- }else if($("#imgCode").val().length==4){
- $(".msgImage").text("");
- $(this).removeClass("frmmsg-warning");
- }else{
- $(".msgImage").text("图形验证码4位");
- return;
- }
- $.ajax("/ajax/regmobilephone", {
- type: "get",
- async: true,
- success: function(data) {
- if(data.success) {
- state = data.data;
- doClick();
- }else{
- if(data.code==20001) {
- $(".msgImage").text("请输入正确的图形验证码");
- $("#changImage").attr("src","/ajax/PictureVC?"+new Date().getTime());
- }
- }
- },
- data: {
- "mobilePhone": $("#companyPhone").val(),
- "vcode":$('#imgCode').val(),
- },
- dataType: 'json'
- });
- }
- function checkNewPwd() {
- companyPswVal1 = $("#companyPsw1").val();
- if(companyPswVal1.length < 6) {
- $(".msgCmp04").prev().addClass("frmmsg-warning");
- $(".msgCmp04 span").text("密码由6-24个字符组成,区分大小写");
- } else {
- $(".msgCmp04").prev().removeClass("frmmsg-warning");
- $(".msgCmp04 span").text("");
- setnewpwd = true;
- }
- }
- function checkNewPwd2() {
- companyPswVal2 = $("#companyPsw2").val();
- if(companyPswVal2.length < 6) {
- $(".msgCmp05").prev().addClass("frmmsg-warning");
- $(".msgCmp05 span").text("密码由6-24个字符组成,区分大小写");
- } else if(companyPswVal1 != companyPswVal2) {
- $(".msgCmp05").prev().addClass("frmmsg-warning");
- $(".msgCmp05 span").text("两次输入不一致,请重新输入");
- } else {
- $(".msgCmp05").prev().removeClass("frmmsg-warning");
- $(".msgCmp05 span").text("");
- setnewpwd2 = true;
- }
- }
- function userReg() {
- $.ajax("/ajax/mobileReg", {
- type: "POST",
- async: true,
- data: {
- "state": state,
- "mobilePhone": $("#companyPhone").val(),
- "validateCode": $("#companysc").val(),
- "password": $("#companyPsw1").val(),
- "name" :$("#companyName").val()
- },
- dataType: 'json',
- success: function(data) {
- if(data.success) {
- var pid = data.data;
- $.ajax("/ajax/professor/joinAndPassOrgAuth", {
- type: "POST",
- async: true,
- data: {
- "pid": pid,
- "oid": orgId
- },
- success: function(res) {
- location.href = 'cmp-staff-invite-log.html?step=2&aid='+orgId+'&an='+orgName+'&al='+orgLogo
- }
- })
- }else{
- if(data.code==-1){
- $.MsgBox.Alert('消息', '验证超时');
- }else if(data.code==-2){
- $(".msgCmp03 span").text('手机号与验证手机不匹配');
- }else if(data.code==-3){
- $(".msgCmp03 span").text('验证码错误,请检查后重试')
- }
- }
- }
-
- });
- }
-
- $("#companyRet").click(function(){
- if(setname==true && phonePass==true && phoneCode==true && setnewpwd==true) {
- userReg();
- }
- })
- })
|