portal html css js resource

loginNew.js 9.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. $(function() {
  2. $(".loginWaySort").on("click", "li", function() {
  3. $(this).parents("#container").find("input").val("");
  4. $(this).parents("#container").find(".frmmsg span").text("");
  5. $(this).parents("#container").find("input").removeClass("frmmsg-warning");
  6. $(this).parents("#container").find(".loginSubmit").attr("disabled", true);
  7. $(this).addClass("liactive").siblings().removeClass("liactive");
  8. $(".loginWays ul").eq($(this).index()).removeClass("displayNone").siblings().addClass("displayNone");
  9. })
  10. })
  11. var namePass = false;
  12. var passwordPass = false;
  13. var codePass = false;
  14. var verification = false;
  15. var namePasstt = false;
  16. /*校验登录按钮显示状态*/
  17. function checkLoginButtn(_this) {
  18. var username = $(_this).parents(".cmpCoverUl").find(".username").val();
  19. var passwd = $(_this).parents(".cmpCoverUl").find(".passwd").val();
  20. if(username == "" || passwd == "") {
  21. $(_this).parents(".cmpCoverUl").find(".loginSubmit").attr("disabled", true);
  22. } else {
  23. $(_this).parents(".cmpCoverUl").find(".loginSubmit").attr("disabled", false);
  24. }
  25. }
  26. /*获取焦点*/
  27. function getFocus(_this) {
  28. $(_this).next().find("span").text("");
  29. $(_this).removeClass("frmmsg-warning");
  30. }
  31. //校验登录手机和邮箱账户
  32. function nameVal(_this) {
  33. var loginName = $(_this).val();
  34. var gunf = /^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/;
  35. var hunPhone = /^1[3|4|5|7|8]\d{9}$/;
  36. if(loginName.length == "") {
  37. $(_this).next().find("span").text("请输入您的手机或邮箱");
  38. $(_this).addClass("frmmsg-warning");
  39. } else if(gunf.test(loginName.trim())) {
  40. userRegisterOk(_this);
  41. $(_this).next().find("span").text("");
  42. $(_this).removeClass("frmmsg-warning");
  43. namePass = true;
  44. } else if(hunPhone.test(loginName.trim())) {
  45. userRegisterOk(_this);
  46. $(_this).next().find("span").text("");
  47. $(_this).removeClass("frmmsg-warning");
  48. namePass = true;
  49. } else {
  50. $(_this).next().find("span").text("请输入正确的手机或邮箱");
  51. $(_this).addClass("frmmsg-warning");
  52. }
  53. }
  54. //校验登录手机账户
  55. function phoneVal(_this,org) {
  56. var loginName = $(_this).val();
  57. var hunPhone = /^1[3|4|5|7|8]\d{9}$/;
  58. if(loginName.length == "") {
  59. $(_this).next().find("span").text("请输入您的手机号码");
  60. $(_this).addClass("frmmsg-warning");
  61. } else if(hunPhone.test(loginName.trim())) {
  62. userRegisterOk(_this,org);
  63. $(_this).next().find("span").text("");
  64. $(_this).removeClass("frmmsg-warning");
  65. namePass = true;
  66. } else {
  67. $(_this).next().find("span").text("请输入正确的手机号码");
  68. $(_this).addClass("frmmsg-warning");
  69. }
  70. }
  71. //判断账号是否注册
  72. function userRegisterOk(_this,org) {
  73. var loginName = $(_this).val();
  74. $.ajax("/ajax/isReg?key=" + loginName, {
  75. type: "GET",
  76. async: true,
  77. success: function($data) {
  78. if($data.data == true) {
  79. $(_this).next().find("span").text("该账号不存在,请检查后重试");
  80. $(_this).addClass("frmmsg-warning");
  81. } else {
  82. $(_this).next().find("span").text("");
  83. $(_this).removeClass("frmmsg-warning");
  84. if(org==1){
  85. doClick("#getcode");
  86. phoneVerificationCode("#getcode");
  87. }
  88. }
  89. },
  90. error: function() {
  91. $.MsgBox.Alert('消息', '服务器请求失败')
  92. },
  93. });
  94. }
  95. //校验登录密码
  96. function passwordVal(_this) {
  97. var passwd = $(_this).val();
  98. if(passwd.length == "") {
  99. $(_this).next().find("span").text("请输入您的登录密码");
  100. $(_this).addClass("frmmsg-warning");
  101. } else if(passwd.length < 6) {
  102. $(_this).next().find("span").text("密码由6-24个字符组成,区分大小写");
  103. $(_this).addClass("frmmsg-warning");
  104. } else {
  105. $(_this).next().find("span").text("");
  106. $(_this).removeClass("frmmsg-warning");
  107. passwordPass = true;
  108. }
  109. }
  110. //验证短信验证码
  111. function codeVerification(_this) {
  112. var code = $(_this).val();
  113. var reg = /^\d{4}$/;
  114. if(code.length == "") {
  115. $(_this).next().find("span").text("请输入您收到的短信验证码");
  116. $(_this).addClass("frmmsg-warning");
  117. } else if(!reg.test(code)) {
  118. $(_this).next().find("span").text("验证码为4位数字");
  119. $(_this).addClass("frmmsg-warning");
  120. } else {
  121. $(_this).next().find("span").text("");
  122. $(_this).removeClass("frmmsg-warning");
  123. verification = true;
  124. }
  125. }
  126. //手机发送验证码
  127. function phoneSend(_this) {
  128. phoneVal(".phoneuser",1)
  129. }
  130. function doClick(_this) {
  131. $(_this).attr("disabled", true);
  132. $(_this).text("60s后重新获取");
  133. var clickTime = new Date().getTime();
  134. var Timer = setInterval(function() {
  135. var nowTime = new Date().getTime();
  136. var second = Math.ceil(60 - (nowTime - clickTime) / 1000);
  137. if(second > 0) {
  138. $(_this).text(second + "s后重新获取");
  139. } else {
  140. clearInterval(Timer);
  141. $(_this).text("获取验证码");
  142. $(_this).attr("disabled", false);
  143. }
  144. }, 1000);
  145. }
  146. //手机发送验证码结束
  147. var state;
  148. function phoneVerificationCode(_this) {
  149. var lp_phone = $(_this).parents(".cmpCoverUl").find(".username").val();
  150. $.ajax("/ajax/sendMobileForLogin", {
  151. type: "get",
  152. dataType: 'json',
  153. data: {
  154. "mobilePhone": lp_phone
  155. },
  156. async: true,
  157. success: function(data) {
  158. console.log(JSON.stringify(data))
  159. if(data.success) {
  160. state = data.data;
  161. }
  162. },
  163. error: function() {
  164. $.MsgBox.Alert('消息', '服务器请求失败')
  165. }
  166. });
  167. };
  168. //验证邀请码
  169. function codeVal(_this) {
  170. var code = $(_this).val();
  171. var reg = /^\d{6}$/;
  172. if(code.length == "") {
  173. $(_this).next().find("span").text("请输入您收到的邀请码");
  174. $(_this).addClass("frmmsg-warning");
  175. } else if(!reg.test(code)) {
  176. $(_this).next().find("span").text("邀请码为6位数字");
  177. $(_this).addClass("frmmsg-warning");
  178. } else {
  179. $(_this).next().find("span").text("");
  180. $(_this).removeClass("frmmsg-warning");
  181. codePass = true;
  182. }
  183. }
  184. //判断用户第一次登录,是否填写了个人信息
  185. function firstLogin() {
  186. var professorId = $.cookie('userid');
  187. $.ajax({
  188. "url": "ajax/professor/" + professorId,
  189. "type": "get",
  190. "async": false,
  191. "success": function(data) {
  192. console.log(data)
  193. if(data.success) {
  194. if(data.data.authentication != undefined || data.data.authentication != null){
  195. location.href = "index.html";
  196. }else{
  197. location.href = "fillinfo-select.html?id=" + professorId;
  198. }
  199. }
  200. },
  201. "error": function() {
  202. $.MsgBox.Alert('消息', '服务器请求失败')
  203. }
  204. })
  205. }
  206. //密码登录
  207. function passwdLogin(_this) {
  208. var loginName = $(_this).parents(".cmpCoverUl").find(".username");
  209. var passwordd = $(_this).parents(".cmpCoverUl").find(".passwd");
  210. if(namePass && passwordPass) {
  211. $.ajax("/ajax/login", {
  212. type: "POST",
  213. data: {
  214. "pw": passwordd.val(),
  215. "lk": loginName.val()
  216. },
  217. dataType: 'json',
  218. async: false,
  219. success: function(data) {
  220. if(data.success) {
  221. if(data.data != "null" && data.data != null) {
  222. firstLogin();
  223. } else {
  224. $(_this).parents(".cmpCoverUl").find(".msgLog2 span").text("登录账号和密码不匹配");
  225. }
  226. }
  227. },
  228. error: function() {
  229. $.MsgBox.Alert('消息', '服务器请求失败');
  230. }
  231. });
  232. }
  233. }
  234. //手机验证码登录
  235. function VerificationLogin(_this) {
  236. var loginName = $(_this).parents(".cmpCoverUl").find(".username");
  237. var code = $(_this).parents(".cmpCoverUl").find(".passwd");
  238. if(namePass && verification) {
  239. $.ajax("/ajax/mobileLogin", {
  240. type: "POST",
  241. dataType: 'json',
  242. data: {
  243. "state": state,
  244. "mobilePhone": loginName.val(),
  245. "validateCode": code.val()
  246. },
  247. async: false,
  248. success: function(data) {
  249. console.log(data)
  250. if(data.success) {
  251. if(data.data != "null" && data.data != null) {
  252. firstLogin();
  253. }
  254. } else {
  255. if(data.code == -1) {
  256. $(_this).parents(".cmpCoverUl").find(".msgCmp03 span").text("验证码已过期,请重新获取");
  257. } else if(data.code == -3 || data.code == 0) {
  258. $(_this).parents(".cmpCoverUl").find(".msgCmp03 span").text("验证码错误,请检查后重试");
  259. }
  260. }
  261. },
  262. error: function() {
  263. $.MsgBox.Alert('消息', '服务器请求失败');
  264. },
  265. });
  266. }
  267. }
  268. //邀请码登录
  269. function InvitationLogin(_this) {
  270. var loginName = $(_this).parents(".cmpCoverUl").find(".username");
  271. var code = $(_this).parents(".cmpCoverUl").find(".passwd");
  272. if(namePass && codePass) {
  273. $.ajax("/ajax/invitelogin", {
  274. type: "POST",
  275. dataType: 'json',
  276. data: {
  277. "code": code.val(),
  278. "key": loginName.val()
  279. },
  280. async: false,
  281. success: function(data) {
  282. console.log(data)
  283. if(data.success) {
  284. if(data.data != "null" && data.data != null) {
  285. if(data.data.auth == true) {
  286. location.href = "index.html";
  287. } else {
  288. location.href = "loginInviteFirst.html";
  289. }
  290. } else {
  291. $(_this).parents(".cmpCoverUl").find(".msgLog2 span").text("邀请码错误,请检查后重试");
  292. }
  293. }
  294. },
  295. error: function() {
  296. $.MsgBox.Alert('消息', '服务器请求失败');
  297. },
  298. });
  299. }
  300. }
  301. //提交登录
  302. function login(_this, num) {
  303. if(num == 1) {
  304. passwdLogin(_this);
  305. } else if(num == 2) {
  306. InvitationLogin(_this);
  307. } else if(num == 3) {
  308. VerificationLogin(_this);
  309. }
  310. }