123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- $(function() {
- $(".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 ul").eq($(this).index()).removeClass("displayNone").siblings().addClass("displayNone");
- })
- })
- var namePass = false;
- var passwordPass = false;
- var codePass = false;
- var verification = false;
- var namePasstt = false;
- function checkLoginButtn(_this) {
- var username = $(_this).parents(".cmpCoverUl").find(".username").val();
- var passwd = $(_this).parents(".cmpCoverUl").find(".passwd").val();
- if(username == "" || passwd == "") {
- $(_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 nameVal(_this) {
- var loginName = $(_this).val();
- var gunf = /^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/;
- var hunPhone = /^1[3|4|5|7|8]\d{9}$/;
- if(loginName.length == "") {
- $(_this).next().find("span").text("请输入您的手机或邮箱");
- $(_this).addClass("frmmsg-warning");
- } else if(gunf.test(loginName.trim())) {
- userRegisterOk(_this);
- $(_this).next().find("span").text("");
- $(_this).removeClass("frmmsg-warning");
- namePass = true;
- } else if(hunPhone.test(loginName.trim())) {
- userRegisterOk(_this);
- $(_this).next().find("span").text("");
- $(_this).removeClass("frmmsg-warning");
- namePass = 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");
- }
- }
- },
- error: function() {
- $.MsgBox.Alert('消息', '服务器请求失败')
- },
- });
- }
- function passwordVal(_this) {
- var passwd = $(_this).val();
- if(passwd.length == "") {
- $(_this).next().find("span").text("请输入您的登录密码");
- $(_this).addClass("frmmsg-warning");
- } else if(passwd.length < 6) {
- $(_this).next().find("span").text("密码由6-24个字符组成,区分大小写");
- $(_this).addClass("frmmsg-warning");
- } 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(".phoneuser",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/sendMobileForLogin", {
- 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) {
- console.log(data)
- if(data.success) {
- if(data.data.authentication || data.data.authentication===0){
- location.href = "index.html";
- }else{
- location.href = "fillinfo-select.html?id=" + professorId;
- }
- }
- },
- "error": function() {
- $.MsgBox.Alert('消息', '服务器请求失败')
- }
- })
- }
- function passwdLogin(_this) {
- var loginName = $(_this).parents(".cmpCoverUl").find(".username");
- var passwordd = $(_this).parents(".cmpCoverUl").find(".passwd");
- if(namePass && passwordPass) {
- $.ajax("/ajax/login", {
- type: "POST",
- data: {
- "pw": passwordd.val(),
- "lk": loginName.val()
- },
- dataType: 'json',
- async: false,
- success: function(data) {
- if(data.success) {
- if(data.data != "null" && data.data != null) {
- firstLogin();
- } else {
- $(_this).parents(".cmpCoverUl").find(".msgLog2 span").text("登录账号和密码不匹配");
- }
- }
- },
- 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) {
- firstLogin();
- }
- } 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 InvitationLogin(_this) {
- var loginName = $(_this).parents(".cmpCoverUl").find(".username");
- var code = $(_this).parents(".cmpCoverUl").find(".passwd");
- if(namePass && codePass) {
- $.ajax("/ajax/invitelogin", {
- type: "POST",
- dataType: 'json',
- data: {
- "code": code.val(),
- "key": loginName.val()
- },
- async: false,
- success: function(data) {
- if(data.success) {
- if(data.data != "null" && data.data != null) {
- if(data.data.auth == true) {
- location.href = "index.html";
- } else {
- location.href = "loginInviteFirst.html";
- }
- } else {
- $(_this).parents(".cmpCoverUl").find(".msgLog2 span").text("邀请码错误,请检查后重试");
- }
- }
- },
- error: function() {
- $.MsgBox.Alert('消息', '服务器请求失败');
- },
- });
- }
- }
- function login(_this, num) {
- if(num == 1) {
- passwdLogin(_this);
- } else if(num == 2) {
- InvitationLogin(_this);
- } else if(num == 3) {
- VerificationLogin(_this);
- }
- }
|