Browse Source

修改专家使用邀请码首次登录中的bug

luyanan 8 years ago
parent
commit
c07ecfaa80
2 changed files with 22 additions and 4 deletions
  1. 2 2
      src/main/webapp/css/login.css
  2. 20 2
      src/main/webapp/js/login-first.js

+ 2 - 2
src/main/webapp/css/login.css

@ -63,11 +63,11 @@ html,body{ cursor:default; margin:0; height:100%;}
63 63
.ecode p{ font-size:14px;}
64 64
.downcode{ margin:10px auto; width:120px; height:120px;}
65 65
/*首次登录*/
66
.login-first{ /*width:466px; height:596px;*/ background:#fff; margin:auto; margin-top:35px; padding:30px; padding-bottom:40px; position:absolute;  z-index:999; border-radius:10px; border:1px #9f9d9d solid; box-shadow:1px 1px 8px #9f9d9d;margin-bottom:40px;}
66
.login-first{ /*width:466px; height:596px;*/ background:#fff; margin:auto; margin-top:35px; padding:40px 60px; position:absolute;  z-index:999; border-radius:10px; border:1px #9f9d9d solid; box-shadow:1px 1px 8px #9f9d9d;margin-bottom:40px;}
67 67
.logos{ clear:both;width:145px; height:100px; margin:auto; padding-top:-40px;}
68 68
.logos img{ width:100%;}
69 69
.welcome{font-size:16px;line-height:32px;color:#747474; text-align:center;padding:10px 0;}
70
.professor{color:#ff8500; }
70
.professor{color:#ff8500; padding:0 10px; }
71 71
.password-input{ /*width:438px; height:264px;*/margin:auto; position:relative;}
72 72
.password{ width:100%;overflow:hidden;}
73 73
.lable{ float:left; display:block;font-size:18px;line-height:60px; color:#747474;margin-right:8px;}

+ 20 - 2
src/main/webapp/js/login-first.js

@ -8,10 +8,28 @@
8 8
//检查用户是否登陆
9 9
	$(function(){  
10 10
	    if($.cookie("userAuth") == true){
11
	    	alert("jjj");
11
	    	
12 12
	    	location.href="index.html";
13 13
	    }else{
14
	    	$("#name").text($.cookie("userName"));
14
	    	var userid=$.cookie("userid");
15
	    	$.ajax({
16
	    		
17
	    		"url":"/ajax/professor/info/" + userid,
18
	    		"data":{"id":userid},
19
	    		"beforeSend":function(response){
20
	    			//alert("110");
21
	    			//console.log(response);
22
	    		},
23
	    		"success":function(response){
24
	    			
25
	    			$("#name").text(response.data.name);
26
	    			//console.log(response.data.name);
27
	    		},
28
	    		"error":function(error){
29
	    			$.MsgBox.Alert('message','fail');
30
	    		}
31
	    	})
32

15 33
	    }
16 34
	}); 
17 35
	var isPass = false;