portal html css js resource

account-set.js 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. $(function(){
  2. loginStatus();//判断个人是否登录
  3. valUser();
  4. var setta = GetQueryString("seta");
  5. if(setta==2){
  6. $(".account-set a").eq(1).addClass("bgcolor").siblings().removeClass("bgcolor");
  7. $(".contentbox .content-set").eq(1).show().siblings().hide();
  8. }
  9. var userid = $.cookie("userid");
  10. //个人信息头像获取
  11. $("#headimg").attr("src", "/images/head/" + userid + "_l.jpg");
  12. $("#headimg").load(function() {
  13. }).error(function() {
  14. $("#headimg").attr("src", "/images/default-photo.jpg");
  15. })
  16. //获取用户用户名
  17. $.ajax({
  18. "url":"/ajax/professor/info/"+userid,
  19. "type":"get",
  20. "success":function($data){
  21. if($data.data)
  22. {
  23. $('#username').text($data.data.name);
  24. }
  25. }
  26. })
  27. $("#hsearch").on("click",function (){
  28. var searchContent = $("#hsearchContent").val();
  29. location.href = "search.html?searchContent="+searchContent;
  30. });
  31. });
  32. /*专家信息左导航背景点击切换*/
  33. $(".leftsidebar").click(function(){
  34. var index = $(this).index()-1;
  35. $(this).addClass("bgcolor").siblings().removeClass("bgcolor");
  36. $(".content-set").eq(index).show().siblings().hide();
  37. });
  38. /*编辑标签变色html里隐藏了*/
  39. $("#container .edit").hover(function(){
  40. $(this).addClass("edit-position-left")
  41. },function(){
  42. $(this).removeClass("edit-position-left")
  43. });
  44. //邮箱绑定,手机绑定,点击关闭隐藏这两个部分
  45. $(".times").click(function(){
  46. $(".cover,.coverset,.cover2").hide();
  47. });
  48. //邮箱绑定,手机绑定,点击返回,隐藏这两个部分
  49. $(".back-btn").click(function(){
  50. $(".cover").hide();
  51. $(".cover2").hide();
  52. });
  53. //这个标签已经隐藏了,点击手机账号绑定
  54. $(".replace2").click(function(){
  55. $(".cover2").show();
  56. });
  57. //这个标签已经隐藏了,点击邮箱账号绑定
  58. $(".replace1").click(function(){
  59. $(".cover").show();
  60. });
  61. //点击邮箱账号绑定
  62. $(".replace5").click(function(){
  63. $(".cover").show();
  64. })
  65. //点击手机账号绑定
  66. $(".replace6").click(function(){
  67. $(".cover2").show();
  68. });
  69. //判断是否绑定了邮箱
  70. var emailCookie = $.cookie("userEmail");
  71. var phoneCookie = $.cookie("userMobilePhone");
  72. if(emailCookie != "" && emailCookie != null && emailCookie != "null" ){
  73. //alert(emailCookieshow);
  74. emailhome(emailCookie);
  75. $("#emailShow").text(emailCookieshow);
  76. $(".replace1").hide();
  77. $(".replace3").show();
  78. }else{
  79. $(".replace1").show();
  80. $(".replace3").hide();
  81. }
  82. //判断是否绑定了手机号
  83. if(phoneCookie != "" && phoneCookie != null && phoneCookie != "null" ){
  84. $("#phoneShow").text(phoneCookie.substring(0, 3) + "****" + phoneCookie.substring(7, 11));
  85. $(".replace2").hide();
  86. $(".replace4").show();
  87. }else{
  88. $(".replace2").show();
  89. $(".replace4").hide();
  90. }
  91. function emailhome(emailset){
  92. //var emailCookieshow;
  93. var emailq = emailset.replace(/@.*/, "");
  94. var emailh = emailset.replace(emailq, "");
  95. if(emailq.length>=6){
  96. emailCookieshow = emailq.substring(emailq.length-4, 0) + "****" + emailh;
  97. }
  98. if(emailq.length==5){
  99. emailCookieshow = emailq.substring(emailq.length-3, 0) + "***" + emailh;
  100. }
  101. if(emailq.length==4){
  102. emailCookieshow = emailq.substring(emailq.length-2, 0) + "**" + emailh;
  103. }
  104. if(emailq.length==3){
  105. emailCookieshow = emailq.substring(emailq.length-1, 0) + "*" + emailh;
  106. }
  107. if(emailq.length<3){
  108. emailCookieshow = emailq+emailh;
  109. }
  110. return emailCookieshow;
  111. }
  112. var oldPass = false;
  113. var isPass = false;
  114. var isPass2 = false;
  115. function valOld(){
  116. var oldPassword = $("#oldPassword").val();
  117. if(oldPassword.length==0){
  118. $(".msg1").text("请输入密码");
  119. oldPass = false;
  120. }else if(oldPassword.length < 6){
  121. $(".msg1").text("密码不少于6位,请输入正确的密码");
  122. }else{
  123. $(".msg1").text("");
  124. oldPass = true;
  125. }
  126. }
  127. function valNew(){
  128. var newPassword = $("#newPassword").val();
  129. var oldPassword = $("#oldPassword").val();
  130. if(newPassword.length==0){
  131. $(".msg2").text("密码不能为空");
  132. }else if(newPassword.length<6){
  133. $(".msg2").text("密码长度过短,至少六位");
  134. }else if(newPassword2 == newPassword){
  135. $(".msg2").text("新旧密码不能一致");
  136. } else{
  137. isPass = true;
  138. $(".msg2").text("");
  139. }
  140. }
  141. function valNew2(){
  142. var newPassword = $("#newPassword").val();
  143. var newPassword2 = $("#newPassword2").val();
  144. if(newPassword2.length==0){
  145. $(".msg3").text("密码不能为空");
  146. }else if(newPassword2 != newPassword){
  147. $(".msg3").text("两次输入密码不一致");
  148. }else{
  149. isPass2 = true;
  150. $(".msg3").text("");
  151. }
  152. }
  153. function restPassword(){
  154. valOld();
  155. valNew();
  156. valNew2();
  157. if(oldPass == true && isPass == true && isPass2 == true){
  158. $.ajax("/ajax/cp",{
  159. type:"POST",
  160. async: false,
  161. success:function(data){
  162. if(data.success){
  163. if(data.data == true){
  164. $.MsgBox.Alert("消息提醒","设置成功,请重新登录");
  165. $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
  166. /*location.href="login.html";*/
  167. }else{
  168. $.MsgBox.Alert("消息提醒","设置失败,请检查密码是否正确!");
  169. }
  170. }else{
  171. $.MsgBox.Alert("消息提醒","系统异常!");
  172. // alert("系统异常!");
  173. }
  174. },
  175. error:function(){$.MsgBox.Alert('message','fail')},
  176. data:{"id":$.cookie("userid"),"npw":$("#newPassword2").val(),"onw":$("#oldPassword").val()},
  177. dataType: 'json'
  178. });
  179. }else{
  180. /*alert("请校验密码");*/
  181. }
  182. }
  183. //重新绑定邮箱
  184. var emailPass = false;
  185. var emailOk = false;
  186. //页面需要验证展示的位置,先用alert替代
  187. function valEmail(){
  188. var email = $("#email").val();
  189. //var gunf=/^\w+@\w+\.((cn)|(com)|(com\.cn))$/;
  190. var gunf= /^([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/;
  191. if(gunf.test(email.trim())){
  192. userRegisterOk();
  193. emailPass = true;
  194. emailSuccess();
  195. }else{
  196. /*alert("请输入正确是邮箱地址");*/
  197. $(".msg11 span").text("请输入正确的邮箱地址。");
  198. emailPass = false;
  199. }
  200. }
  201. //获取邮箱,填写地址
  202. function emailSuccess()
  203. {
  204. var mailVal =$('#email').val();
  205. $(".sett").each(function() {
  206. var url = mailVal.split('@')[1];
  207. for (var j in hash){
  208. $(this).attr("href", hash[url]);
  209. }
  210. });
  211. }
  212. //判断邮箱是否绑定
  213. function userRegisterOk(){
  214. var email = $("#email").val();
  215. //console.log(email);
  216. $.ajax("/ajax/isReg?key="+email,{
  217. type:"GET",
  218. async: false,
  219. success:function($data){
  220. //console.log($data);
  221. if($data.data==true){
  222. $(".msg11").text("");
  223. emailOk = true;
  224. }else{
  225. $(".msg11").text("该邮箱已绑定账号,请使用其他邮箱地址。");
  226. emailOk = false;
  227. }
  228. },
  229. error:function(){
  230. $.MsgBox.Alert('消息','服务器请求失败')},
  231. }
  232. );
  233. }
  234. var mailCode = GetQueryString('sc');
  235. //获取邮箱验证码传值注册
  236. if(mailCode!=''){
  237. $(".account-set a").eq(1).addClass("bgcolor").siblings().removeClass("bgcolor");
  238. $(".contentbox .content-set").eq(1).show().siblings().hide();
  239. $.ajax("/ajax/bindMail/"+mailCode,{
  240. type:"get",
  241. async: true,
  242. success:function(data){
  243. $.MsgBox.Alert('消息提醒','邮箱绑定成功')
  244. $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
  245. userpe();
  246. },
  247. error:function(){
  248. $.MsgBox.Alert('消息提醒','邮箱绑定失败')
  249. },
  250. data:{},
  251. dataType: 'json'}
  252. );
  253. }
  254. //查询用户手机号和邮箱
  255. function userpe(){
  256. $.ajax("/ajax/qaUser",{
  257. type:"get",
  258. async: true,
  259. success:function(data){
  260. //console.log(data)
  261. $.MsgBox.Alert('消息提醒','邮箱绑定成功')
  262. $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
  263. var emaild = data.data.email;
  264. emailhome(emaild);
  265. $.cookie('userEmail',emaild,{path:"/"});
  266. $("#emailShow").text(emailCookieshow);
  267. },
  268. error:function(){
  269. $.MsgBox.Alert('消息提醒','邮箱绑定失败')
  270. },
  271. data:{"id":$.cookie("userid")},
  272. dataType: 'json'}
  273. );
  274. }
  275. //点击邮箱激活
  276. function bindEmail(){
  277. valEmail();
  278. var email = $("#email").val();
  279. if(emailPass == true && emailOk == true){
  280. $.ajax("/ajax/reqBindMail",{
  281. type:"GET",
  282. async: false,
  283. success:function(data){
  284. //console.log(data);
  285. if(data.success){
  286. //console.log(data);
  287. if(data.data == true){
  288. //$.cookie('userEmail',email);
  289. $(".cover").hide();
  290. $("#vovernext").show();
  291. $(".emalvel").text(email);
  292. }else{
  293. $.MsgBox.Alert("消息提醒","邮箱发布失败!");
  294. }
  295. }else{
  296. $.MsgBox.Alert("消息提醒","服务器链接超时!");
  297. }
  298. },
  299. error:function(){$.MsgBox.Alert('message','fail')},
  300. data:{"userid":$.cookie("userid"),"mail":$("#email").val()},
  301. dataType: 'json'
  302. });
  303. }else{
  304. /*alert("请输入正确是邮箱地址");*/
  305. }
  306. }
  307. $("#bindgo").on("click",function(){
  308. var mailVal =$('.sett').attr("href");
  309. location.href=mailVal;
  310. })
  311. //判断手机是否绑定
  312. function phoneRegisterOk(){
  313. var phoneVal = $("#phone").val();
  314. $.ajax("/ajax/isReg?key="+phoneVal,{
  315. type:"GET",
  316. async: false,
  317. success:function($data){
  318. //console.log($data);
  319. if($data.data==true){
  320. $(".msg12").text("");
  321. phonePass = true;
  322. }else{
  323. $(".msg12").text("该手机已绑定账号,请使用其他手机号码。");
  324. }
  325. },
  326. error:function(){
  327. $.MsgBox.Alert('消息','服务器请求失败')},
  328. }
  329. );
  330. }
  331. //验证手机号是否合法
  332. var phonePass = false;
  333. function valPhone(){
  334. var phoneVal = $("#phone").val();
  335. var hunPhone=/^1[3|4|5|7|8]\d{9}$/;
  336. if(hunPhone.test(phoneVal.trim())){
  337. phoneRegisterOk();
  338. }else{
  339. phonePass = false;
  340. /*alert("手机格式正确,请输入正确的手机号码");*/
  341. $(".msg12").text("请输入正确的手机号码");
  342. }
  343. }
  344. //验证手机验证码
  345. var codePass = false;
  346. function valCode(){
  347. var phoneCode = $("#phoneCode").val();
  348. if(phoneCode.length==0){
  349. /*alert("请输入验证码");*/
  350. $(".msg13").text("请输入验证码");
  351. }else{
  352. if(!isNaN(phoneCode)){
  353. codePass = true;
  354. }else{
  355. codePass=false;
  356. $(".msg13").text("请填写数字");
  357. /*alert("请填写数字");*/
  358. }
  359. }
  360. }
  361. //发送手机验证码
  362. var phoneState;
  363. function sendPhoneCode(){
  364. valPhone();
  365. if(phonePass == true){
  366. $.ajax("/ajax/vcWithBind",{
  367. type:"GET",
  368. async: false,
  369. success:function(data){
  370. //console.log(data);
  371. if(data.success){
  372. if(data.data == null){
  373. $(".msg13").text("验证码发送失败,请确认手机号码正确!");
  374. /*alert("验证码发送失败,请确认手机号码正确!");*/
  375. }else{
  376. phoneState = data.data;
  377. $(".msg13").text("发送成功,请检查验证码");
  378. }
  379. }else{
  380. $.MsgBox.Alert("消息提醒","系统异常!");
  381. // alert("系统异常!");
  382. }
  383. },
  384. error:function(){$.MsgBox.Alert('message','fail')},
  385. data:{"userid":$.cookie("userid"),"mobilePhone":$("#phone").val()},
  386. dataType: 'json'
  387. });
  388. }else{
  389. /*alert("请输入正确是手机号码");*/
  390. }
  391. }
  392. //绑定手机号
  393. function bindPhone(){
  394. valCode();
  395. if(codePass == true){
  396. /*alert($.cookie("userid"));
  397. alert($("#phone").val());
  398. alert(phoneState);
  399. alert($("#phoneCode").val());*/
  400. var phoneVal = $("#phone").val();
  401. $.ajax("/ajax/bindMobilePhone",{
  402. type:"POST",
  403. async: false,
  404. success:function(data){
  405. if(data.success){
  406. /*alert(2);*/
  407. if(data.data == true){
  408. $.cookie('userMobilePhone',phoneVal,{path:"/"});
  409. $(".cover2").hide();
  410. $.MsgBox.Alert("消息提醒","手机绑定成功!");
  411. $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain');
  412. setTimeout(function(){
  413. location.href="account-set.html?seta=2";
  414. },1500);
  415. }else{
  416. $.MsgBox.Alert("消息提醒","短信验证不正确,请检查后重新输入。");
  417. }
  418. }else{
  419. $.MsgBox.Alert("消息提醒","系统异常!");
  420. // alert("系统异常!");
  421. }
  422. },
  423. error:function(){$.MsgBox.Alert('message','fail')},
  424. data:{"userid":$.cookie("userid"),"mobilePhone":$("#phone").val(),"validateCode":$("#phoneCode").val(),"state": phoneState},
  425. dataType: 'json'
  426. });
  427. }else{
  428. /*alert("请输入验证码是否正确");*/
  429. }
  430. }