123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- $(function() {
- loginStatus();
- var slef = GetQueryString("slef");
- if(slef==1){
- $("#gophone").addClass("liactive").prev().removeClass("liactive");
- $(".emailmain").addClass("displayNone");
- $(".phonemain").removeClass("displayNone");
- }
- $(".loginWaySort").on("click", "li", function() {
- $(this).parents("#container").find("input").val("");
- $(this).parents("#container").find(".frmmsg span").text("");
- $(this).parents("#container").find("input").removeClass("frmmsg-warning");
- $(this).parents("#container").find(".loginSubmit").attr("disabled", true);
- $(this).addClass("liactive").siblings().removeClass("liactive");
- $(".loginWays .waysThis").eq($(this).index()).removeClass("displayNone").siblings().addClass("displayNone");
- })
-
- })
- var isEmail = false;
- var passwordPass = false;
- var codePass = false;
- var verification = false;
- var namePass = false;
- function checkEmailButtn(_this) {
- var email = $(_this).parents(".cmpCoverUl").find("#email").val();
- if(email == "") {
- $(_this).parents(".cmpCoverUl").find(".loginSubmit").attr("disabled", true);
- } else {
- $(_this).parents(".cmpCoverUl").find(".loginSubmit").attr("disabled", false);
- }
- }
- function checkLoginButtn(_this) {
- var username = $(_this).parents(".cmpCoverUl").find(".username").val();
- var companysc = $(_this).parents(".cmpCoverUl").find(".companysc").val();
- if(username == "" || companysc == "") {
- $(_this).parents(".cmpCoverUl").find(".loginSubmit").attr("disabled", true);
- } else {
- $(_this).parents(".cmpCoverUl").find(".loginSubmit").attr("disabled", false);
- }
- }
- function getFocus(_this) {
- $(_this).next().find("span").text("");
- $(_this).removeClass("frmmsg-warning");
- }
- function emailVal(_this,org) {
- var loginName = $(_this).val();
- var gunf = /^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/;
- if(loginName.length == "") {
- $(_this).next().find("span").text("请输入您的邮箱地址");
- $(_this).addClass("frmmsg-warning");
- } else if(gunf.test(loginName.trim())) {
- userRegisterOk(_this,org);
- $(_this).next().find("span").text("");
- $(_this).removeClass("frmmsg-warning");
- isEmail = true;
- }else {
- $(_this).next().find("span").text("请输入正确的邮箱地址");
- $(_this).addClass("frmmsg-warning");
- }
- }
- function phoneVal(_this,org) {
- var loginName = $(_this).val();
- var hunPhone = /^1[3|4|5|7|8]\d{9}$/;
- if(loginName.length == "") {
- $(_this).next().find("span").text("请输入您的手机号码");
- $(_this).addClass("frmmsg-warning");
- } else if(hunPhone.test(loginName.trim())) {
- userRegisterOk(_this,org);
- $(_this).next().find("span").text("");
- $(_this).removeClass("frmmsg-warning");
- namePass = true;
- } else {
- $(_this).next().find("span").text("请输入正确的手机号码");
- $(_this).addClass("frmmsg-warning");
- }
- }
- function userRegisterOk(_this,org) {
- var loginName = $(_this).val();
- $.ajax("/ajax/isReg?key=" + loginName, {
- type: "GET",
- async: true,
- success: function($data) {
- if($data.data == true) {
- $(_this).next().find("span").text("该账号不存在,请检查后重试");
- $(_this).addClass("frmmsg-warning");
- } else {
- $(_this).next().find("span").text("");
- $(_this).removeClass("frmmsg-warning");
- if(org==1){
- doClick("#getcode");
- phoneVerificationCode("#getcode");
- }
- if(org==2){
- findBack();
- }
- }
- },
- error: function() {
- $.MsgBox.Alert('消息', '服务器请求失败')
- },
- });
- }
- function passwordVal(_this) {
- var passwd = $(_this).val();
- var passwd2 = $("#newPassword").val();
- if(passwd.length == "") {
- $(_this).next().find("span").text("请设置您的登录密码");
- $(_this).addClass("frmmsg-warning");
- passwordPass = false;
- } else if(passwd.length < 6) {
- $(_this).next().find("span").text("密码由6-24个字符组成,区分大小写");
- $(_this).addClass("frmmsg-warning");
- passwordPass = false;
- } else if(passwd != passwd2) {
- $(_this).next().find("span").text("两次输入不一致,请重新输入");
- $(_this).addClass("frmmsg-warning");
- passwordPass = false;
- } else {
- $(_this).next().find("span").text("");
- $(_this).removeClass("frmmsg-warning");
- passwordPass = true;
- }
- }
- function codeVerification(_this) {
- var code = $(_this).val();
- var reg = /^\d{4}$/;
- if(code.length == "") {
- $(_this).next().find("span").text("请输入您收到的短信验证码");
- $(_this).addClass("frmmsg-warning");
- } else if(!reg.test(code)) {
- $(_this).next().find("span").text("验证码为4位数字");
- $(_this).addClass("frmmsg-warning");
- } else {
- $(_this).next().find("span").text("");
- $(_this).removeClass("frmmsg-warning");
- verification = true;
- }
- }
- function phoneSend(_this) {
- phoneVal(".username",1)
- }
- function doClick(_this) {
- $(_this).attr("disabled", true);
- $(_this).text("60s后重新获取");
- 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) {
- $(_this).text(second + "s后重新获取");
- } else {
- clearInterval(Timer);
- $(_this).text("获取验证码");
- $(_this).attr("disabled", false);
- }
- }, 1000);
- }
- var state;
- function phoneVerificationCode(_this) {
- var lp_phone = $(_this).parents(".cmpCoverUl").find(".username").val();
- $.ajax("/ajax/vcWithRP", {
- type: "get",
- dataType: 'json',
- data: {
- "mobilePhone": lp_phone
- },
- async: true,
- success: function(data) {
- console.log(JSON.stringify(data))
- if(data.success) {
- state = data.data;
- }
- },
- error: function() {
- $.MsgBox.Alert('消息', '服务器请求失败')
- }
- });
- };
- function codeVal(_this) {
- var code = $(_this).val();
- var reg = /^\d{6}$/;
- if(code.length == "") {
- $(_this).next().find("span").text("请输入您收到的邀请码");
- $(_this).addClass("frmmsg-warning");
- } else if(!reg.test(code)) {
- $(_this).next().find("span").text("邀请码为6位数字");
- $(_this).addClass("frmmsg-warning");
- } else {
- $(_this).next().find("span").text("");
- $(_this).removeClass("frmmsg-warning");
- codePass = true;
- }
- }
- function firstLogin() {
- var professorId = $.cookie('userid');
- $.ajax({
- "url": "ajax/professor/" + professorId,
- "type": "get",
- "async": false,
- "success": function(data) {
- if(data.success) {
- if(data.data.authentication != undefined || data.data.authentication != null){
- window.history.back();
- }else{
- location.href = "fillinfo-select.html?id=" + professorId;
- }
- }
- },
- "error": function() {
- $.MsgBox.Alert('消息', '服务器请求失败')
- }
- })
- }
- function VerificationLogin(_this) {
- var loginName = $(_this).parents(".cmpCoverUl").find(".username");
- var code = $(_this).parents(".cmpCoverUl").find(".passwd");
- if(namePass && verification) {
- $.ajax("/ajax/mobileLogin", {
- type: "POST",
- dataType: 'json',
- data: {
- "state": state,
- "mobilePhone": loginName.val(),
- "validateCode": code.val()
- },
- async: false,
- success: function(data) {
- console.log(data)
- if(data.success) {
- if(data.data != "null" && data.data != null) {
- submitCodeVal();
- }
- } else {
- if(data.code == -1) {
- $(_this).parents(".cmpCoverUl").find(".msgCmp03 span").text("验证码已过期,请重新获取");
- } else if(data.code == -3 || data.code == 0) {
- $(_this).parents(".cmpCoverUl").find(".msgCmp03 span").text("验证码错误,请检查后重试");
- }
- }
- },
- error: function() {
- $.MsgBox.Alert('消息', '服务器请求失败');
- },
- });
- }
- }
- function submitCodeVal(_this){
- if(namePass && verification){
- $.ajax("/ajax/validCode",{
- type:"POST",
- async: false,
- success:function(data){
- if(data.success){
- if(data.data == true){
- $(".phoneTwo").removeClass("displayNone");
- $(".phoneOne").addClass("displayNone");
- $("#pstate").val(state);
- $("#pmobilePhone").val($(".username").val());
- $("#pvc").val($("#companysc").val());
- }else{
- $(_this).parents(".cmpCoverUl").find(".msgCmp03 span").text("验证码错误,请检查后重试");
- }
- }else{
- $(_this).parents(".cmpCoverUl").find(".msgCmp03 span").text("验证码已过期,请重新获取");
- }
- },
- error:function(){$.MsgBox.Alert('消息', '服务器请求失败');},
- data:{"vc":$("#companysc").val(),"state":state},
- dataType: 'json'
- });
- }
- }
- function findBack(){
- $.ajax("/ajax/reqRpWithEmail",{
- type:"GET",
- async: false,
- success:function(data){
- if(data.success){
- $(".emailOne").addClass("displayNone");
- $(".emailTow").removeClass("displayNone");
- $("#emailShow").text($("#email").val());
- }
- },
- error:function(){$.MsgBox.Alert('消息', '服务器请求失败')},
- data:{"mail":$("#email").val()},
- dataType: 'json'
- });
- }
- function findphone(_this){
- if(passwordPass){
- $.ajax("/ajax/resetPasswordWithMobilePhone",{
- type:"POST",
- async: false,
- success:function(data){
- console.log(data)
- if(data.success){
- if(data.data == true){
- location.href = "pwdResult.html?num=1";
- }else{
- $(_this).parents(".cmpCoverUl").find(".msgCmp4 span").text("验证码错误,请检查后重试");
- }
- }else{
- $(_this).parents(".cmpCoverUl").find(".msgCmp4 span").text("验证码已过期,请重新获取");
- }
- },
- error:function(){$.MsgBox.Alert('消息', '服务器请求失败')},
- data:{"vc":$("#pvc").val(),"state":$("#pstate").val(),"mobilePhone":$("#pmobilePhone").val(),"pw":$("#newPasswordok").val()},
- dataType: 'json'
- });
- }
- }
- function backPassword(_this, num) {
- if(num == 1) {
- emailVal("#email",2)
- } else if(num == 2) {
- var url = $("#emailShow").text().split('@')[1];
- for (var j in hash){
- if(hash[url]==undefined){
- location.href="http://mail." + url;
- }else{
- $(_this).attr("href", hash[url]);
- location.href=hash[url];
- }
- }
- } else if(num == 3) {
- submitCodeVal(_this);
- }else if(num==4){
- findphone(_this);
- }
- }
|