Browse Source

1、添加款项记录界面
2、完善个人信息功能完成

luyanan 8 years ago
parent
commit
d9e8ed0183

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

@ -176,8 +176,8 @@ html,body{ cursor:default; margin:0; height:100%;}
176 176
.msgnotice .contacttip a{ color:#ff8400;}
177 177

178 178
/*弹窗提示完善信息*/
179
.completedcover{ position:fixed; width:100%; height:100%;background:rgba(0,0,0,.6); z-index:10; display:none;}
180
.vercompleted{ border:1px solid #ddd; border-radius:10px; width:400px; position:absolute; top:20%; left:50%; margin-left:-240px; padding:20px 50px ;color: #555; background:#fff; text-align:center; z-index:11; }
179
.completedcover{ position:fixed; width:100%; height:100%;background:rgba(0,0,0,.6); z-index:1000; display:none;}
180
.vercompleted{ border:1px solid #ddd; border-radius:10px; width:400px; position:absolute; top:20%; left:50%; margin-left:-240px; padding:20px 50px ;color: #555; background:#fff; text-align:center; z-index:1001; }
181 181
.vercompleted h3{font-weight: 400; font-size:18px; margin: 30px 0;line-height: 22px;}
182 182
.vercompleted .verbtnbox{ overflow:hidden; width:320px;  margin:auto; border-top:1px #d6d6d6 dashed; padding:20px 0;}
183 183
.vercompleted .verbtnbox a{ float:left; margin:0 20px; padding:8px 30px;  border-radius:10px;background:#ff8400; color:#fff;}

+ 19 - 5
src/main/webapp/css/popup.css

@ -9,7 +9,7 @@
9 9
.blackcover{ width:100%; height:100%;overflow-x: hidden;overflow-y: auto; position:fixed; background:rgba(0,0,0,.6); z-index:1000; }
10 10
.resoufrm p{ font-size:14px;}
11 11
/*弹窗资源信息、申请信息*/
12
.resouinfo{position:absolute;background:#fff;border-radius:10px;padding:20px;z-index:1001; }
12
.resouinfo{position:absolute;background:#fff;border-radius:10px;padding:20px;font-size:14px;z-index:1001; margin-bottom:40px; }
13 13

14 14
.resoutit{padding: 0 20px;font: 16px/40px \5FAE\8F6F\96C5\9ED1,"Microsoft YaHei";color: #606060; border-bottom:1px solid #ff8400; position:relative; font-weight:bold;}
15 15
.resoutit .stateinfor{ position:absolute; bottom: -46px;right: -20px;background: #ff8400; color: #fff; padding: 0 40px;border-radius: 10px 0 0 10px;z-index: 2; cursor:pointer;}
@ -62,11 +62,11 @@
62 62
.workmsg{ clear:both;font:14px/26px \5FAE\8F6F\96C5\9ED1,"Microsoft YaHei"; color:red; padding-left:20px; background:url(../images/info_warn.png) 0 center no-repeat; }
63 63

64 64
/*//资源申请*/
65
.resouapply{position:absolute; background:#fff;border-radius:10px;padding:20px;z-index:1002; display:none;}
65
.resouapply{position:absolute; background:#fff;border-radius:10px;padding:20px;font-size:14px;z-index:1001; margin-bottom:40px;}
66 66

67 67

68 68
/*评价*/
69
.commentinfo{position:absolute;background:#fff;border-radius:10px;padding:20px;z-index:1001; }
69
.commentinfo{position:absolute;background:#fff;border-radius:10px;padding:20px;font-size:14px; z-index:1001; margin-bottom:40px; }
70 70
.commentinfo .wordlimit{ font-size:12px; color:#999; text-align:right;}
71 71
.commentbox{ padding:20px; }
72 72
.commentbox table{width:600px;}
@ -78,7 +78,7 @@
78 78
.evastar2{ display:block; width:24px; height:24px; cursor:pointer; float:left; background:url(../images/evastar.png) 0 -22px no-repeat;}
79 79

80 80
/*留言*/
81
.guestbookinfo{position:absolute;background:#fff;border-radius:10px;padding:20px;z-index:1001; }
81
.guestbookinfo{position:absolute;background:#fff;border-radius:10px;padding:20px;font-size:14px; z-index:1001;  margin-bottom:40px;}
82 82
.guestbookinfo .wordlimit{ font-size:12px; color:#999;}
83 83
.guestbookcon{padding:20px; width:560px;}
84 84
.guestcon{ border-top:1px #d6d6d6 solid;  padding:20px 0;}
@ -91,6 +91,20 @@
91 91
.guestcon .righteva .guestname .guesttime{ position:absolute; right:0;}
92 92
.guestcon .righteva .evabrief{ display:block; margin-top:10px; max-height:80px; overflow:hidden; }
93 93

94

94
/*款项记录*/
95

96
.paymentinfo{position:absolute; background:#fff;border-radius:10px;padding:20px;font-size:14px;z-index:1001;  margin-bottom:40px; }
97
.paymentbox{ padding:20px;}
98
.payaddbox{  width:640px; margin:auto; margin-top:20px;padding:20px 40px; background:#f8f8f8;}
99
.payaddbox table{ width:100%;}
100
.payaddbox table tr th{ text-align:right;}
101
.payaddbox table tr td{ padding:4px 0; }
102
.paymentbox table{width:760px; margin-bottom:20px;}
103
.paymentbox table tr{border-bottom:1px dotted #ccc; }
104
.paymentbox table tr:nth-child(1){border-bottom:none;}
105
.paymentbox table tr th{ background:#ff8400;color:#fff;}
106
.paymentbox table tr th,.paymentbox table tr td{ padding:10px 4px; text-align:center; }
107
.paymentbox table .paytit th{ background:#ff8400; color:#fff;}
108
.paybtn{ position:absolute; left:100px; top:0px; font-size:14px; cursor:pointer; color:#ff8400; }
95 109

96 110


+ 9 - 6
src/main/webapp/information-add.html

@ -13,6 +13,7 @@
13 13
<link type="text/css" href="css/login.css" rel="stylesheet">
14 14
<link type="text/css" href="css/common.css" rel="stylesheet">
15 15
<script type="text/javascript" src="js/jquery-1.11.1.js"></script>
16
<script type="text/javascript" src="js/information-add.js"></script>
16 17
</head>
17 18

18 19
<body>
@ -30,32 +31,34 @@
30 31
            	<table>
31 32
                	<tr>
32 33
                    	<td><div class="basictype">姓名</div></td>
33
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="name"><span class="requiredcon">*</span></div></td>
34
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="name"id="name"><span class="requiredcon">*</span></div></td>
34 35
                    </tr>
36
                    
35 37
                    <tr class="basicmsgbox"><th></th><td><div class="basiccon"><div class="basicmsg basicmsg1"></div></div></td></tr>   
36 38
                    <tr>
37 39
                    	<td><div class="basictype">机构</div></td>
38
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="org"><span class="requiredcon">*</span></div></td>
40
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="org"id="org"><span class="requiredcon">*</span></div></td>
39 41
                    </tr>
42
                   
40 43
                     <tr class="basicmsgbox"><th></th><td><div class="basiccon"><div class="basicmsg basicmsg2"></div></div></td></tr>   
41 44
                    <tr>
42 45
                    	<td><div class="basictype">部门</div></td>
43
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="depart"></div></td>
46
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="depart"id="orgName"></div></td>
44 47
                    </tr>
45 48
                    <tr>
46 49
                    	<td><div class="basictype">职称</div></td>
47
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="ptit"></div></td>
50
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="ptit"id="title"></div></td>
48 51
                    </tr>
49 52
                     <tr>
50 53
                    	<td><div class="basictype">职位</div></td>
51
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="post"></div></td>
54
                        <td><div class="basiccon"><input type="text" class="inputtxt" name="post"id="department"></div></td>
52 55
                    </tr>
53 56
                    
54 57
                    <tr>
55 58
                    	<td colspan="2">
56 59
                            <div class="basiccon">
57 60
                                <div class="addrebtn" style="text-align:center;">
58
                                    <input type="button" value="保存" class="inputtxt submitBtn">
61
                                    <input type="button" value="保存" class="inputtxt submitBtn"id="saveProfessor">
59 62
                                </div>
60 63
                            </div>
61 64
                        </td>

+ 58 - 0
src/main/webapp/js/information-add.js

@ -0,0 +1,58 @@
1
function GetQueryString(name) { 
2
		var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); 	
3
		var r = window.location.search.substr(1).match(reg);  //��ȡurl��"?"�����ַ�����ƥ��
4
	
5
		var context = ""; 
6
		if (r != null) 
7
			 context = r[2]; 
8
		reg = null; 
9
		r = null; 
10
		return context == null || context == "" || context == "undefined" ? "" : decodeURI(context); 
11
	}
12
var id=GetQueryString("id");
13
var namePass=false;
14
var orgPass=false;
15
$("#name").blur(function(){
16
	var name=$("#name").val;
17
	if(name.length==0 && name==""){
18
		$(".basicmsg1").text("请输入您的姓名");
19
	}else{
20
		$(".basicmsg1").text("");
21
		 namePass=true;
22
	}
23
});
24
$("#org").blur(function(){
25
	var org=$("#name").val;
26
	if(org.length==0 && org==""){
27
		$(".basicmsg2").text("请输入您的姓名");
28
	}else{
29
		$(".basicmsg2").text("");
30
		orgPass=true;
31
	}
32
});
33

34
$("#saveProfessor").on("click",	function() {
35
				var $data = {};
36
				$data.name = $("#name").val();
37
				$data.orgId = $("#orgId").val();
38
				$data.orgName = $("#orgName").val();
39
				$data.title = $("#title").val();
40
				$data.department = $("#department").val();
41
				$data.id = id;
42
				if(orgPass&&namePass){
43
						$.ajax({"url" : "../ajax/professor",
44
							"type" :  "POST",
45
							"success" : function(rdata) {
46
								console.log(rdata);
47
								if (rdata.success) {									
48
										location.href="index.html";								
49
								} else {
50
									alert(rdata.msg);
51
								}
52
							},
53
							"data" : $data,
54
							"contentType" :"application/x-www-form-urlencoded",
55
							dataType : "json"
56
						});
57
				}
58
			});

+ 3 - 3
src/main/webapp/js/login-phone-find01.js

@ -44,7 +44,7 @@ $(function(){
44 44
				 	dataType: 'json'
45 45
				});
46 46
		}else{
47
			alert("请输入正确是手机号码");
47
			$.MsgBox.Alert('消息',"请输入正确是手机号码");
48 48
		}
49 49
	}
50 50

@ -76,7 +76,7 @@ $(function(){
76 76
							if(data.data == true){
77 77
								location.href="login-phone-find02.html?mobilePhone="+$("#phone").val()+"&vc="+$("#phoneCode").val()+"&state="+phoneState;
78 78
							}else{
79
								alert("验证码错误!");
79
								$.MsgBox.Alert('消息',"验证码错误!");
80 80
								$(".msg3").text("验证码错误");
81 81
							}
82 82
						}else{
@ -85,7 +85,7 @@ $(function(){
85 85
							// alert("系统异常!");
86 86
						}
87 87
					},
88
					error:function(){alert('fail')},
88
					error:function(){$.MsgBox.Alert('message','fail')},
89 89
					data:{"vc":$("#phoneCode").val(),"state":phoneState},
90 90
				 	dataType: 'json'
91 91
				});

+ 103 - 22
src/main/webapp/js/popup.js

@ -86,13 +86,13 @@ function ResourceInfo() {
86 86
//		console.log(_widht);
87 87
//		console.log(_height);
88 88
		//让提示框居中
89
		$(".resouinfo").css({ top: (_height - boxHeight)/2 + "px", left: (_widht - boxWidth) / 2 + "px" });
90

89
		//$(".resouinfo").css({ top: (_height - boxHeight)/2 + "px", left: (_widht - boxWidth) / 2 + "px" });
90
		$(".resouinfo").css({ top:"40px", left: (_widht - boxWidth) / 2 + "px" });
91 91

92 92
		//关闭按钮
93 93
		$(".workclose").click(function(){
94 94
			$(".blackcover").remove();
95
			
95
			$("body").css("overflow","auto");
96 96
		});
97 97
		
98 98
		
@ -157,8 +157,7 @@ function ResourceInfo() {
157 157
// 资源申请确认
158 158
function ResourceApply(){
159 159
		var PopHtml="";
160
		var CoverHtml="";
161
		CoverHtml += '<div class="blackcover"></div>';
160
		PopHtml += '<div class="blackcover">';
162 161
		PopHtml += '<div class="resouapply"><form class="resoufrm">';
163 162
		PopHtml += '<div class="resoutit">资源信息</div>';
164 163
		PopHtml += '<table class="resoutab"><tr class="timelo">';
@ -184,27 +183,26 @@ function ResourceApply(){
184 183
		PopHtml += '<tr><th class="resouinfotype" scope="row">备注</th><td colspan="2"><textarea class="frmtype" id="consultContent"></textarea></td></tr></table>';
185 184
		PopHtml += '<table class="resoutab btnboxdown"> <tr><td colspan="3"><div class="addrebtn" style="text-align:center;"><input type="button" value="发送" id="del" class="frmtype frmbtn"><input type="button" value="返回" class="frmtype frmbtn frmrbtn "id="cooperation"></div></td></tr>';
186 185
		PopHtml += '</table></form><span class="workclose">关闭</span></div>';
187
		
186
		PopHtml += '</div>';
188 187
		
189 188
		//必须先将html添加到body,再设置Css样式
190
		$("body").before(CoverHtml);
191
        $("body").append(PopHtml);
192

193
		var _widht = document.documentElement.clientWidth;  //屏幕宽
194
		var _height = document.documentElement.clientHeight; //屏幕高
189
        $("body").before(PopHtml);
190
		$("body").css("overflow-y","hidden");
191
      
192
        var _widht = $(".blackcover").width();
193
        var _height = $(".blackcover").height();
195 194
		var boxWidth = $(".resouapply").width();
196 195
		var boxHeight = $(".resouapply").height();
196
		
197 197
		//让提示框居中
198
		$(".resouapply").css({ top: '(_height - boxHeight)/2 + "px"', left: '(_widht - boxWidth) / 2 + "px"' });
198
		$(".resouapply").css({top:"40px", left: (_widht - boxWidth) / 2 + "px" });
199 199

200 200

201
		//关闭按钮,移除HTML节点
201
		//关闭按钮
202 202
		$(".workclose").click(function(){
203 203
			$(".blackcover").remove();
204
			$(".resouapply").remove();
205
			
206
		})
207
                 	  
204
			$("body").css("overflow","auto");
205
		});
208 206
}
209 207
//资源申请确认 //
210 208

@ -259,13 +257,13 @@ function CommentInfo() {
259 257
		var boxHeight = $(".commentinfo").height();
260 258
		
261 259
		//让提示框居中
262
		$(".commentinfo").css({ top: (_height - boxHeight)/2 + "px", left: (_widht - boxWidth) / 2 + "px" });
260
		$(".commentinfo").css({top:"40px", left: (_widht - boxWidth) / 2 + "px" });
263 261

264 262

265 263
		//关闭按钮
266 264
		$(".workclose").click(function(){
267 265
			$(".blackcover").remove();
268
			
266
			$("body").css("overflow","auto");
269 267
		});
270 268
}		
271 269

@ -300,14 +298,97 @@ function GuestbookInfo() {
300 298
		var boxHeight = $(".guestbookinfo").height();
301 299
		
302 300
		//让提示框居中
303
		$(".guestbookinfo").css({ top: (_height - boxHeight)/2 + "px", left: (_widht - boxWidth) / 2 + "px" });
301
		$(".guestbookinfo").css({ top:"40px", left: (_widht - boxWidth) / 2 + "px"  });
304 302

305 303

306 304
		//关闭按钮
307 305
		$(".workclose").click(function(){
308 306
			$(".blackcover").remove();
309
			
307
			$("body").css("overflow","auto");
310 308
		});
311 309
}	
312 310

313
//  留言//	
311
//  留言//	
312

313
//款项记录 //
314
function PaymentInfo() {
315
		var PopHtml="";
316

317
		PopHtml += '<div class="blackcover">';
318
		PopHtml += '<div class="paymentinfo"><form class="resoufrm">';
319
		PopHtml += '<div class="resoutit">款项记录<!--<div class="paybtn">发起付/退款</div>--></div>';
320
		/*添加款项记录*/
321
		PopHtml += '<div class="payaddbox">';
322
		PopHtml += '<table><tr>';
323
		PopHtml += '<th><div class="resouinforcon">付款方</div></th>';
324
		PopHtml += '<td><div class="resouinforcon"><input type="text" class="frmtype"></div></td>';
325
		PopHtml += '<th><div class="resouinforcon">支付方式</div></th>';
326
		PopHtml += '<td><div class="resouinforcon"><input type="text" class="frmtype"></div></td>';
327
		PopHtml += '</tr>';
328

329
		PopHtml += '<tr>';
330
		PopHtml += '<th><div class="resouinforcon">金额</div></th>';
331
		PopHtml += '<td><div class="resouinforcon"><input type="number" class="frmtype"></div></td>';
332
		PopHtml += '<th><div class="resouinforcon">状态</div></th>';
333
		PopHtml += '<td><div class="resouinforcon"><input type="text" class="frmtype"></div></td>';
334
		PopHtml += '</tr>';
335

336
		PopHtml += '<tr>';
337
		PopHtml += '<th><div class="resouinforcon">备注</div></th>';
338
		PopHtml += '<td colspan="2"><div class="resouinforcon"><textarea class="frmtype"></textarea></div></td>';
339
		PopHtml += '<td><div class="resouinforcon"><div class="addrebtn" style="text-align:center;"><input type="button" value="添加" class="frmtype frmbtn"> </div></div></td>';
340
		PopHtml += ' </tr></table></div>';
341
		/*款项记录*/
342
		PopHtml += '<div class="paymentbox"> ';
343
		PopHtml += '<table><tr>';
344
		PopHtml += '<th><div class="resouinforcon">总费用</div></th>';
345
		PopHtml += '<td><div class="resouinforcon">¥10000</div></td>';
346
		PopHtml += '<th><div class="resouinforcon">实收费用</div></th>';
347
		PopHtml += '<td><div class="resouinforcon">¥2000</div></td>';
348
		PopHtml += '<th><div class="resouinforcon">剩余费用</div></th>';
349
		PopHtml += '<td><div class="resouinforcon">¥8000</div></td>';
350
		PopHtml += '</tr></table>';
351

352
		PopHtml += '<table>';
353
		PopHtml += '<tr class="paytit">';
354
		PopHtml += '<th width="140"><div class="resouinforcon">时间</div></th>';
355
		PopHtml += '<th width="80"><div class="resouinforcon">付款方</div></th>';
356
		PopHtml += '<th width="120"><div class="resouinforcon">支付方式</div></th>';
357
		PopHtml += '<th width="120"><div class="resouinforcon">金额</div></th>';
358
		PopHtml += '<th width="120"><div class="resouinforcon">状态</div></th>';
359
		PopHtml += '<th width="200"><div class="resouinforcon">备注</div></th>';
360
		PopHtml += '</tr>';
361

362
		PopHtml += '<tr class="payitem">';
363
		PopHtml += '<td><div class="resouinforcon">2016-08-10 08:00</div></td>';
364
		PopHtml += '<td><div class="resouinforcon">张三</div></td>';
365
		PopHtml += '<td><div class="resouinforcon">线下</div></td>';
366
		PopHtml += '<td><div class="resouinforcon">¥1000</div></td>';
367
		PopHtml += '<td><div class="resouinforcon">确认收款</div></td>';
368
		PopHtml += '<td><div class="resouinforcon">之后尾款另行支付</div></td>';
369
		PopHtml += '</tr>';
370
		PopHtml += '</table></div></form>';
371
		PopHtml += '<span class="workclose">关闭</span>';
372
		PopHtml += '</div></div>';
373

374
                    
375
        //必须先将html添加到body,再设置Css样式
376
        $("body").before(PopHtml);
377
		$("body").css("overflow-y","hidden");
378
      
379
        var _widht = $(".blackcover").width();
380
        var _height = $(".blackcover").height();
381
		var boxWidth = $(".paymentinfo").width();
382
		var boxHeight = $(".paymentinfo").height();
383
		
384
		//让提示框居中
385
		$(".paymentinfo").css({ top:"40px", left: (_widht - boxWidth) / 2 + "px"  });
386

387

388
		//关闭按钮
389
		$(".workclose").click(function(){
390
			$(".blackcover").remove();
391
			$("body").css("overflow","auto");
392
		});           
393
}       
394
 // 款项记录//

+ 38 - 2
src/main/webapp/js/register.js

@ -175,11 +175,20 @@ $("#phone_password2").blur(function(){
175 175
$("#btnn").click(function(){
176 176
 if(phonePass&&setpass1&&setpassagain)
177 177
 {
178
		$.ajax("/ajax/reg",{
178
		$.ajax("/ajax/regmobile",{
179 179
			type:"POST",
180 180
			 async: false,
181 181
			success:function(data){  
182
			location.href="professor.html?id="+data.data;
182
			if(data.success){
183
				loginagain();
184
				$(".completedcover").css("display","block");
185
				$("#afterSay").click(function(){
186
					location.href="index.html";
187
				});
188
				$("#todayPerfect").click(function(){
189
					location.href="information-add.html?id="+data.data;
190
				});
191
			}				
183 192
			},
184 193
			error:function(){$.MsgBox.Alert('message','fail')},
185 194
			data:{"state":state,"mobilePhone":$("#lp_phone").val(),
@ -188,8 +197,35 @@ $("#btnn").click(function(){
188 197
		});
189 198
 }
190 199
});
200
function loginagain(){
191 201

202
		$.ajax("/ajax/login",{
203
				type:"POST",
204
				 async: false,
205
				success:function(data){  
192 206

207
					if(data.success){
208
						if(data.data != "null" && data.data != null){
209
							if(data.data.auth){
210
								location.href="index.html";
211
							}else{
212
								location.href="login-first.html";
213
							}
214
						}else{
215
							$(".msg5").text("登录账号和密码不匹配!");
216
						}
217
					}else{
218
						$(".msg5").text("系统异常!");
219
						// alert("系统异常!");
220
					}
221
				},
222
				error:function(){$.MsgBox.Alert('message','fail')},
223
				data:{"pw":$("#phone_password").val(),"lk":$("#lp_phone").val()},
224
			 	dataType: 'json'
225
			});
226

227

228
}
193 229

194 230
//邮箱注册模块
195 231
//邮箱验证

+ 0 - 835
src/main/webapp/professor.html

@ -1,835 +0,0 @@
1
<!DOCTYPE html>
2
<html lang="zh-cmn-Hans">
3
<head>
4
<meta charset="utf-8">
5
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6
<meta name="viewport" content="width=device-width, initial-scale=1">
7
<meta name="description" content="">
8
<meta name="author" content="">
9
<title>专家用户信息编辑</title>
10
<link href="css/bootstrap.min.css" rel="stylesheet">
11
<style>
12
	#raLists{
13
		background-color: #fff;
14
	    border: 1px solid #ccc;
15
	    border-radius: 4px;
16
	    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
17
	    box-sizing: border-box;
18
	    cursor: text;
19
	    margin: 0 0 15px 0;
20
	    min-height: 32px;
21
	    overflow: hidden;
22
	    padding: 0;
23
	    position: relative;
24
	    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
25
	    width: 100%;
26
	}
27
	#raLists::before,#raLists::after{
28
		content: " ";
29
    	display: table;
30
	}
31
	#raLists > li{
32
		background-clip: padding-box;
33
	    background-color: #f1f1f1;
34
	    border: 1px solid #ddd;
35
	    border-radius: 3px;
36
	    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
37
	    cursor: default;
38
	    line-height: 12px;
39
	    padding: 3px 20px 3px 5px;
40
	    position: relative;
41
	    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
42
	    display: block;
43
	    float: left;
44
	    list-style: outside none none;
45
	    margin: 5px 0 0 6px;
46
	}
47
	#raLists > li > .raDescp{
48
		display:none
49
	}
50
	#raLists > li > .raClose{
51
		  color: #000;
52
	    display: block;
53
	    font-size: 15.6px;
54
	    font-weight: 700;
55
	    height: 20px;
56
	    line-height: 14px;
57
	    opacity: 0.2;
58
	    position: absolute;
59
	    right: 0;
60
	    text-align: center;
61
	    text-shadow: 0 1px 0 #fff;
62
	    top: 0;
63
	    width: 20px;
64
	}
65
	
66
</style>
67
</head>
68
<body>
69
	<div class="container">
70
		<div class="page-header">
71
			<h1>专家用户信息</h1>
72
		</div>
73
		<div class="row">
74
			<div class="col-sm-3">
75
			</div>
76
			<div class="col-sm-6">
77
				<form class="form-horizontal">
78
					<div class="form-group">
79
						<label for="name" class="col-sm-2 control-label">姓名</label>
80
						<div class="col-sm-10">
81
							<input type="text" class="form-control" id="name" placeholder="姓名">
82
						</div>
83
					</div>
84
					<div class="form-group">
85
						<label for="title" class="col-sm-2 control-label">职称</label>
86
						<div class="col-sm-10">
87
							<input type="text" class="form-control" id="title" placeholder="职称">
88
						</div>
89
					</div>
90
					<div class="form-group">
91
						<label for="orgName" class="col-sm-2 control-label">机构</label>
92
						<div class="col-sm-10">
93
							<input type="hidden" id="orgId" /> <input type="text" class="form-control" id="orgName" placeholder="机构">
94
						</div>
95
					</div>
96
					<div class="form-group">
97
						<label for="department" class="col-sm-2 control-label">部门</label>
98
						<div class="col-sm-10">
99
							<input type="text" class="form-control" id="department" placeholder="部门">
100
						</div>
101
					</div>
102
					<div class="form-group">
103
						<label for="address" class="col-sm-2 control-label">住址</label>
104
						<div class="col-sm-10">
105
							<input type="text" class="form-control" id="address" placeholder="住址">
106
						</div>
107
					</div>
108
					<div class="col-sm-2"></div>
109
					<div class="col-sm-10">
110
						<button id="saveProfessor" type="button" class="btn btn-default">保存</button>
111
					</div>
112
				</form>
113
			</div>
114
			<div class="col-sm-3">
115
			</div>
116
		</div>
117
<div class="container" style="height:15px;"></div>
118
	<script src="/js/jquery-1.11.1.js"></script>
119
	<script src="/js/bootstrap.min.js"></script>
120
	<script type="text/javascript">
121
		$(function() {
122
			var getUrlParameter = function(sParam) {
123
				var sPageURL = decodeURIComponent(window.location.search.substring(1));
124
				var sURLVariables = sPageURL.split('&'), sParameterName, i;
125
				for (i = 0; i < sURLVariables.length; i++) {
126
					sParameterName = sURLVariables[i].split('=');
127
					if (sParameterName[0] === sParam) {
128
						return sParameterName[1] === undefined ? true
129
								: sParameterName[1];
130
					}
131
				}
132
			};
133
			 $("#headChange").on("click",function (){
134
	   		var headChange1 =getUrlParameter("id"); 
135
	   		location.href = "photo-set1.html?id="+encodeURI(headChange1);
136
	   })
137
			var fillRA=function($caption,$descp){
138
				$li =$("<li></li>").addClass("rablock");
139
				$("<span></span>").html($caption).addClass("raCaption").appendTo($li);
140
				$("<span></span>").html($descp?$descp:"").addClass("raDescp").appendTo($li);
141
				$("<div></div>").html("X").addClass("raClose").appendTo($li);
142
				$li.appendTo($("#raLists"));					
143
			};
144
			var gtd = function($val, $dval) {
145
				var $rd = $("<td></td>");
146
				if (typeof $val === "boolean") {
147
					$rd.html($val ? "是" : "否");
148
				} else if ($val) {
149
					$rd.html($val);
150
				} else if ($dval) {
151
					$rd.html($dval)
152
				}
153
				return $rd;
154
			};
155
			var gtr = function($data, $col, $prefix) {
156
				var $row = $("<tr></tr>");
157
				if ($data.id) {
158
					$row.data("pid", $data.id);
159
				}
160
				for (var i = 0; i < $col.length; ++i) {
161
					var pn = $col[i];
162
					var ind = pn.indexOf(":");
163
					var cn = pn;
164
					var dn = "";
165
					if (ind > 0) {
166
						cn = pn.substring(0, ind);
167
						++ind;
168
						dn = pn.substring(ind);
169
					}
170
					gtd($data[cn], dn).appendTo($row);
171
				}
172
				$optd = $("<td></td>");
173
				$("<button type='button'></button>").html("编辑").addClass($prefix + "Edit").appendTo($optd);
174
				$("<button type='button'></button>").html("删除").addClass($prefix + "Del").appendTo($optd);
175
				$optd.appendTo($row);
176
				return $row;
177
			};
178
			var gtbody = function($data, $tbody, $col, $prefix) {
179
				for (var i = 0; i < $data.length; ++i) {
180
					gtr($data[i], $col, $prefix).appendTo($tbody);
181
				}
182
			}
183
184
			var addJob = function($data) {
185
				gtbody($data, $("#job_tbody"), [ "startMonth", "stopMonth:--",
186
						"company", "title", "descp" ], "job");
187
			};
188
			var addHonor = function($data) {
189
				gtbody($data, $("#honor_tbody"), [ "year", "name", "descp" ],
190
						"honor");
191
			};
192
			var addPatent = function($data) {
193
				gtbody($data, $("#patent_tbody"), [ "year", "name", "url",
194
						"descp" ], "patent");
195
			};
196
			var addProject = function($data) {
197
				gtbody($data, $("#project_tbody"), [ "startMonth",
198
						"stopMonth:--", "name", "descp" ], "project");
199
			};
200
			var addRA = function($datas) {
201
				for(var i =0 ; i< $datas.length;++i){
202
					var $data = $datas[i];
203
					var $row = $("<tr></tr>");
204
					$("<td></td>").html($data.caption).appendTo($row);
205
					$("<td></td>").html($data.count).appendTo($row);
206
					if ($data.descp) {
207
						$("<td></td>").html($data.descp).appendTo($row);
208
					} else {
209
						$("<td></td>").html("").appendTo($row);
210
					}
211
					$row.appendTo($("#ra_tbody"));
212
				}
213
			};
214
			var addEdu = function($data) {
215
				gtbody($data, $("#edu_tbody"), [ "year", "school", "college",
216
						"major", "student", "degree", "descp" ], "edu");
217
			};
218
			var addPaper = function($data) {
219
				gtbody($data, $("#paper_tbody"), [ "year", "name", "url","descp" ], "paper");
220
			};
221
222
			var professorId = getUrlParameter("id");
223
			if (professorId) {
224
				$.get("../ajax/professor/info/" + professorId, function($data) {
225
					if ($data.success) {
226
						var $info = $data.data;
227
						if ($info) {
228
							$("#name").val($info.name);
229
							$("#title").val($info.title);
230
							$("#orgId").val($info.orgId);
231
							$("#orgName").val($info.orgName);
232
							$("#department").val($info.department);
233
							$("#subject").val($info.subject);
234
							$("#industry").val($info.industry);
235
							$("#address").val($info.address);
236
							$("#descp").val($info.descp);
237
							$("#headImage").attr("src","/images/head/"+professorId+"_l.jpg");
238
							$("#orgImage").attr("src","/images/org/"+$info.orgId+".jpg");
239
							if ($info.researchAreas) {
240
								addRA($info.researchAreas);
241
							}
242
							if ($info.edus) {
243
								addEdu($info.edus);
244
							}
245
							if ($info.jobs) {
246
								addJob($info.jobs);
247
							}
248
							if ($info.papers) {
249
								addPaper($info.papers);
250
							}
251
							if ($info.patents) {
252
								addPatent($info.patents);
253
							}
254
							if ($info.honors) {
255
								addHonor($info.honors);
256
							}
257
							if ($info.projects) {
258
								addProject($info.projects)
259
							}
260
							$("#saveSubject").on("click",function(){
261
								$.ajax({"url" : "../ajax/professor/subject",
262
									"type" : "POST",
263
									"data" : {"id":professorId,"subject":$("#subject").val()},
264
									"contentType" : "application/x-www-form-urlencoded",
265
									"success" : function($data) {
266
										if ($data.success) {
267
											alert("save subject ok");
268
										} else {
269
											alert($data.msg);
270
										}
271
									}
272
								});
273
							});
274
							$("#saveIndustry").on("click",function(){
275
								$.ajax({"url" : "../ajax/professor/industry",
276
									"type" : "POST",
277
									"data" : {"id":professorId,"industry":$("#industry").val()},
278
									"contentType" : "application/x-www-form-urlencoded",
279
									"success" : function($data) {
280
										if ($data.success) {
281
											alert("save industry ok");
282
										} else {
283
											alert($data.msg);
284
										}
285
									}
286
								});
287
							});
288
							$("#saveAddress").on("click",function(){
289
								$.ajax({"url" : "../ajax/professor/address",
290
									"type" : "POST",
291
									"data" : {"id":professorId,"address":$("#address").val()},
292
									"contentType" : "application/x-www-form-urlencoded",
293
									"success" : function($data) {
294
										if ($data.success) {
295
											alert("save address ok");
296
										} else {
297
											alert($data.msg);
298
										}
299
									}
300
								});
301
							});
302
							$("#saveDescp").on("click",function(){
303
								$.ajax({"url" : "../ajax/professor/descp",
304
									"type" : "POST",
305
									"data" : {"id":professorId,"descp":$("#descp").val()},
306
									"contentType" : "application/x-www-form-urlencoded",
307
									"success" : function($data) {
308
										if ($data.success) {
309
											alert("save descp ok");
310
										} else {
311
											alert($data.msg);
312
										}
313
									}
314
								});
315
							});
316
							$("#raLabel").on("click", function() {
317
								$.get("../ajax/researchArea/"+professorId,function($data){
318
									if($data.success){
319
										if($data.data){
320
										$('#raLists').empty();
321
											var $ras = $data.data;
322
											for(var i = 0 ; i < $ras.length;++i){
323
												fillRA($ras[i].caption,$ras[i].descp);
324
											}
325
										}
326
									}else{
327
										alert($data.msg);
328
									}
329
								});
330
								$("#raModal").modal();
331
							});
332
							$("#raNew").on("click",function(){
333
								fillRA($("#raCaption").val(),$("#raDescp").val());
334
								$("#raCaption").val("");
335
								$("#raDescp").val("");
336
								return false;
337
							});
338
							$("#raSubmit").on("click",function(){
339
								var $data=[];
340
								$("#raLists > li").each(function(){
341
									var $rd ={};
342
									$this = $(this);
343
									$rd.professorId = professorId;
344
									$rd.caption=$this.children(".raCaption").html();
345
									$rd.descp=$this.children(".raDescp").html();
346
									if(!$rd.descp) delete $rd.descp;
347
									$data[$data.length]=$rd;
348
								});
349
								var $has = $data.length>0;
350
								$.ajax({
351
									"url" : $has?"../ajax/researchArea":"../ajax/researchArea/"+professorId,
352
									"type" : $has? "PUT" : "DELETE",
353
									"data" : $has ? JSON.stringify($data) : null,
354
									"contentType" : $has ? "application/json": "application/x-www-form-urlencoded",
355
									"success" : function($data) {
356
										if ($data.success) {
357
											location.reload(true);
358
										} else {
359
											alert($data.msg);
360
										}
361
									}
362
								});
363
								
364
							});
365
							setInterval(function(){
366
							$(".raClose").on("click",function(){
367
								
368
								$this=$(this);
369
								$this.parent().remove();
370
								return false;
371
							});
372
							},1000);
373
							
374
							$("#jobLabel").on("click",function(){
375
								$("#jobModal").data("pid", "");
376
								$("#job_startMonth").val("");
377
								$("#job_stopMonth").val("");
378
								$("#job_company").val("");
379
								$("#job_title").val("");
380
								$("#job_descp").val("");
381
								$("#jobModal").modal();
382
							});
383
							$(".jobEdit")	.on("click",function() {
384
								var $id = $(this).parent().parent().data("pid");
385
								$("#jobModal").data("pid", $id);
386
								$.get("../ajax/job/" + $id,function($data) {
387
									if ($data.success) {
388
										$info = $data.data;
389
										$("#job_startMonth").val($info.startMonth);
390
										$("#job_stopMonth").val($info.stopMonth ? $info.stopMonth: "");
391
										$("#job_company").val($info.company ? $info.company: "");
392
										$("#job_title").val($info.title ? $info.title: "");
393
										$("#job_descp").val($info.descp ? $info.descp: "");
394
										$("#jobModal").modal();
395
									} else {
396
										alert($data.msg);
397
									}
398
								});
399
							});
400
							$(".jobDel").on("click", function() {
401
								var $id = $(this).parent().parent().data("pid");
402
								$.ajax({
403
									"url" : "../ajax/job/" + $id,
404
									"type" : "DELETE",
405
									"success" : function($data) {
406
										if ($data.success) {
407
											location.reload(true);
408
										} else {
409
											alert($data.msg);
410
										}
411
									}
412
								});
413
							});
414
							$("#jobSubmit").on("click",function(){
415
								var $data = {};
416
								var $id = $("#jobModal").data("pid");
417
								if ($id) $data.id = $id;
418
								$data.professorId = professorId;
419
								$data.startMonth = $("#job_startMonth").val();
420
								$data.stopMonth = $("#job_stopMonth").val();
421
								if (!$data.stopMonth)
422
									delete $data.stopMonth;
423
								$data.company = $("#job_company").val();
424
								$data.title = $("#job_title").val();
425
								$data.descp = $("#job_descp").val();
426
								if (!$data.descp)
427
									delete $data.descp;
428
								$.ajax({
429
									"url" : "../ajax/job",
430
									"type" : $id ? "PUT" : "POST",
431
									"data" : $id ? JSON.stringify($data) : $data,
432
									"contentType" : $id ? "application/json"
433
											: "application/x-www-form-urlencoded",
434
									"success" : function($data) {
435
										if ($data.success) {
436
											location.reload(true);
437
										} else {
438
											alert($data.msg);
439
										}
440
									}
441
								});
442
							});
443
							$("#projectLabel").on("click", function() {
444
								$("#projectModal").data("pid", "");
445
								$("#project_startMonth").val("");
446
								$("#project_stopMonth").val("");
447
								$("#project_name").val("");
448
								$("#project_descp").val("");
449
								$("#projectModal").modal();
450
							});
451
							$(".projectEdit").on("click",function() {
452
								var $id = $(this).parent().parent().data("pid");
453
								$("#projectModal").data("pid", $id);
454
								$.get("../ajax/project/" + $id,function($data) {
455
									if ($data.success) {
456
										$info = $data.data;
457
										$("#project_startMonth").val($info.startMonth ? $info.startMonth: "");
458
										$("#project_stopMonth").val($info.stopMonth ? $info.stopMonth: "");
459
										$("#project_name").val($info.name ? $info.name: "");
460
										$("#project_descp").val($info.descp ? $info.descp: "");
461
										$("#projectModal").modal();
462
									} else {
463
										alert($data.msg);
464
									}
465
								});
466
							});
467
							$(".projectDel").on("click", function() {
468
								var $id = $(this).parent().parent().data("pid");
469
								$.ajax({
470
									"url" : "../ajax/project/" + $id,
471
									"type" : "DELETE",
472
									"success" : function($data) {
473
										if ($data.success) {
474
											location.reload(true);
475
										} else {
476
											alert($data.msg);
477
										}
478
									}
479
								});
480
							});
481
							$("#projectSubmit").on("click",function() {
482
								var $data = {};
483
								var $id = $("#projectModal").data("pid");
484
								if ($id)
485
									$data.id = $id;
486
								$data.professorId = professorId;
487
								$data.startMonth = $("#project_startMonth").val();
488
								$data.stopMonth = $("#project_stopMonth").val();
489
								if (!$data.stopMonth)
490
									delete $data.stopMonth;
491
								$data.name = $("#project_name").val();
492
								$data.descp = $("#project_descp").val();
493
								if (!$data.descp)
494
									delete $data.descp;
495
								$.ajax({
496
									"url" : "../ajax/project",
497
									"type" : $id ? "PUT" : "POST",
498
									"data" : $id ? JSON.stringify($data) : $data,
499
									"contentType" : $id ? "application/json"
500
											: "application/x-www-form-urlencoded",
501
									"success" : function($data) {
502
										if ($data.success) {
503
											location.reload(true);
504
										} else {
505
											alert($data.msg);
506
										}
507
									}
508
								});
509
							});
510
							$("#honorLabel").on("click", function() {
511
								$("honorModal").data("pid", "");
512
								$("#honor_year").val("");
513
								$("#honor_name").val("");
514
								$("#honor_descp").val("");
515
								$("#honorModal").modal();
516
							});
517
							$(".honorEdit").on("click", function() {
518
								var $id = $(this).parent().parent().data("pid");
519
								$("#honorModal").data("pid", $id);
520
								$.get("../ajax/honor/" + $id, function($data) {
521
									if ($data.success) {
522
										$info = $data.data;
523
										$("#honor_year").val($info.year ? $info.year : "");
524
										$("#honor_name").val($info.name ? $info.name : "");
525
										$("#honor_descp").val($info.descp ? $info.descp : "");
526
										$("#honorModal").modal();
527
									} else {
528
										alert($data.msg);
529
									}
530
								});
531
							});
532
							$(".honorDel").on("click", function() {
533
								var $id = $(this).parent().parent().data("pid");
534
								$.ajax({
535
									"url" : "../ajax/honor/" + $id,
536
									"type" : "DELETE",
537
									"success" : function($data) {
538
										if ($data.success) {
539
											location.reload(true);
540
										} else {
541
											alert($data.msg);
542
										}
543
									}
544
								});
545
							});
546
							$("#honorSubmit").on("click",function() {
547
								var $data = {};
548
								var $id = $("#honorModal").data("pid");
549
								if ($id)
550
									$data.id = $id;
551
								$data.professorId = professorId;
552
								$data.year = $("#honor_year").val();
553
								$data.name = $("#honor_name").val();
554
								$data.descp = $("#honor_descp").val();
555
								if (!$data.descp)
556
									delete $data.descp;
557
								$.ajax({
558
									"url" : "../ajax/honor",
559
									"type" : $id ? "PUT" : "POST",
560
									"data" : $id ? JSON.stringify($data) : $data,
561
									"contentType" : $id ? "application/json"
562
											: "application/x-www-form-urlencoded",
563
									"success" : function($data) {
564
										if ($data.success) {
565
											location.reload(true);
566
										} else {
567
											alert($data.msg);
568
										}
569
									}
570
								});
571
							});
572
							$("#eduLabel").on("click", function() {
573
								$("#eduModal").data("pid", "");
574
								$("#edu_year").val("");
575
								$("#edu_school").val("");
576
								$("#edu_college").val("");
577
								$("#edu_major").val("");
578
								$("#edu_degree").val("");
579
								$("#edu_descp").val("");
580
								$("#eduModal").modal();
581
							});
582
							$(".eduEdit").on("click",function(){
583
								var $id = $(this).parent().parent().data("pid");
584
								$("#eduModal").data("pid", $id);
585
								$.get("../ajax/edu/" + $id, function($data) {
586
									if ($data.success) {
587
										$info = $data.data;
588
										$("#edu_year").val($info.year ? $info.year : "");
589
										$("#edu_school").val($info.school ? $info.school : "");
590
										$("#edu_college").val($info.college ? $info.college : "");
591
										$("#edu_major").val($info.major ? $info.major : "");
592
										$("#edu_degree").val($info.degree ? $info.degree : "");
593
										$("#edu_descp").val($info.descp ? $info.descp : "");
594
										$("#edu_student_YES").removeAttr("checked");
595
										$("#edu_student_NO").removeAttr("checked");
596
										if ($info.student) {
597
											$("#edu_student_YES").get(0).checked=true;
598
										} else {
599
											$("#edu_student_NO").get(0).checked=true;
600
										}
601
										$("#eduModal").modal();
602
									} else {
603
										alert($data.msg);
604
									}
605
								});
606
							});
607
							$(".eduDel").on("click", function() {
608
								var $id = $(this).parent().parent().data("pid");
609
								$.ajax({
610
									"url" : "../ajax/edu/" + $id,
611
									"type" : "DELETE",
612
									"success" : function($data) {
613
										if ($data.success) {
614
											location.reload(true);
615
										} else {
616
											alert($data.msg);
617
										}
618
									}
619
								});
620
							});
621
							$("#eduSubmit").on("click",function(){
622
								var $data = {};
623
								var $id = $("#eduModal").data("pid");
624
								if ($id)
625
									$data.id = $id;
626
								$data.professorId = professorId;
627
								$data.year = $("#edu_year").val();
628
								if (!$data.year)
629
									delete $data.year;
630
								$data.school = $("#edu_school").val();
631
								$data.descp = $("#edu_descp").val();
632
								if (!$data.descp)
633
									delete $data.descp;
634
								$data.college = $("#edu_college").val();
635
								if (!$data.college)
636
									delete $data.college;
637
								$data.major = $("#edu_major").val();
638
								if (!$data.major)
639
									delete $data.major;
640
								$data.degree = $("#edu_degree").val();
641
								if (!$data.degree)
642
									delete $data.degree;
643
								$data.student = $("#edu_student_YES").get(0).checked;
644
								$.ajax({
645
									"url" : "../ajax/edu",
646
									"type" : $id ? "PUT" : "POST",
647
									"data" : $id ? JSON.stringify($data) : $data,
648
									"contentType" : $id ? "application/json"
649
											: "application/x-www-form-urlencoded",
650
									"success" : function($data) {
651
										if ($data.success) {
652
											location.reload(true);
653
										} else {
654
											alert($data.msg);
655
										}
656
									}
657
								});
658
							});
659
							$("#paperLabel").on("click", function() {
660
								$("#paperModal").data("pid", "");
661
								$("#paper_year").val("");
662
								$("#paper_name").val("");
663
								$("#paper_url").val("");
664
								$("#paper_descp").val("");
665
								$("#paperModal").modal();
666
							});
667
							$(".paperEdit").on("click", function() {
668
								var $id = $(this).parent().parent().data("pid");
669
								$("#paperModal").data("pid", $id);
670
								$.get("../ajax/paper/" + $id, function($data) {
671
									if ($data.success) {
672
										$info = $data.data;
673
										$("#paper_year").val($info.year ? $info.year : "");
674
										$("#paper_name").val($info.name ? $info.name : "");
675
										$("#paper_url").val($info.url ? $info.url : "");
676
										$("#paper_descp").val($info.descp ? $info.descp : "");
677
										$("#paperModal").modal();
678
									} else {
679
										alert($data.msg);
680
									}
681
								});
682
							});
683
							$(".paperDel").on("click", function() {
684
								var $id = $(this).parent().parent().data("pid");
685
								$.ajax({
686
									"url" : "../ajax/paper/" + $id,
687
									"type" : "DELETE",
688
									"success" : function($data) {
689
										if ($data.success) {
690
											location.reload(true);
691
										} else {
692
											alert($data.msg);
693
										}
694
									}
695
								});
696
							});
697
							$("#paperSubmit").on("click",function() {
698
								var $data = {};
699
								var $id = $("#paperModal").data("pid");
700
								if ($id)
701
									$data.id = $id;
702
								$data.professorId = professorId;
703
								$data.year = $("#paper_year").val();
704
								if (!$data.year)
705
									delete $data.year;
706
								$data.name = $("#paper_name").val();
707
								$data.descp = $("#paper_descp").val();
708
								if (!$data.descp)
709
									delete $data.descp;
710
								$data.url = $("#paper_url").val();
711
								if (!$data.url)
712
									delete $data.url;
713
								$.ajax({
714
									"url" : "../ajax/paper",
715
									"type" : $id ? "PUT" : "POST",
716
									"data" : $id ? JSON.stringify($data) : $data,
717
									"contentType" : $id ? "application/json"
718
											: "application/x-www-form-urlencoded",
719
									"success" : function($data) {
720
										if ($data.success) {
721
											location.reload(true);
722
										} else {
723
											alert($data.msg);
724
										}
725
									}
726
								});
727
							});
728
							$("#patentLabel").on("click", function() {
729
								$("#patentModal").data("pid", "");
730
								$("#patent_year").val("");
731
								$("#patent_name").val("");
732
								$("#patent_url").val("");
733
								$("#patent_descp").val("");
734
								$("#patentModal").modal();
735
							});
736
							$(".patentEdit").on("click", function() {
737
								var $id = $(this).parent().parent().data("pid");
738
								$("#patentModal").data("pid", $id);
739
								$.get("../ajax/patent/" + $id, function($data) {
740
									if ($data.success) {
741
										$info = $data.data;
742
										$("#patent_year").val($info.year ? $info.year : "");
743
										$("#patent_name").val($info.name ? $info.name : "");
744
										$("#patent_url").val($info.url ? $info.url : "");
745
										$("#patent_descp").val($info.descp ? $info.descp : "");
746
										$("#patentModal").modal();
747
									} else {
748
										alert($data.msg);
749
									}
750
								});
751
							});
752
							$(".patentDel").on("click", function() {
753
								var $id = $(this).parent().parent().data("pid");
754
								$.ajax({
755
									"url" : "../ajax/patent/" + $id,
756
									"type" : "DELETE",
757
									"success" : function($data) {
758
										if ($data.success) {
759
											location.reload(true);
760
										} else {
761
											alert($data.msg);
762
										}
763
									}
764
								});
765
							});
766
							$("#patentSubmit").on("click",function() {
767
								var $data = {};
768
								var $id = $("#patentModal").data("pid");
769
								if ($id)
770
									$data.id = $id;
771
								$data.professorId = professorId;
772
								$data.year = $("#patent_year").val();
773
								if (!$data.year)
774
									delete $data.year;
775
								$data.name = $("#patent_name").val();
776
								$data.descp = $("#patent_descp").val();
777
								if (!$data.descp)
778
									delete $data.descp;
779
								$data.url = $("#patent_url").val();
780
								if (!$data.url)
781
									delete $data.url;
782
								$.ajax({
783
									"url" : "../ajax/patent",
784
									"type" : $id ? "PUT" : "POST",
785
									"data" : $id ? JSON.stringify($data) : $data,
786
									"contentType" : $id ? "application/json"
787
											: "application/x-www-form-urlencoded",
788
									"success" : function($data) {
789
										if ($data.success) {
790
											location.reload(true);
791
										} else {
792
											alert($data.msg);
793
										}
794
									}
795
								});
796
							});
797
						}
798
					} else {
799
						alert($data.msg);
800
					}
801
				});	
802
			}
803
804
			$("#saveProfessor").on("click",	function() {
805
				var $data = {};
806
				$data.name = $("#name").val();
807
				$data.orgId = $("#orgId").val();
808
				$data.orgName = $("#orgName").val();
809
				$data.title = $("#title").val();
810
				$data.department = $("#department").val();
811
				$data.address = $("#address").val();
812
				$data.id = professorId;
813
				$.ajax({"url" : "../ajax/professor",
814
							"type" :  "POST",
815
							"success" : function(rdata) {
816
								console.log(rdata);
817
								if (rdata.success) {
818
									
819
										location.href="login.html"									
820
								} else {
821
									alert(rdata.msg);
822
								}
823
							},
824
							"data" : $data,
825
							"contentType" :"application/x-www-form-urlencoded",
826
							dataType : "json"
827
						});
828
			});
829
830
		
831
832
		});
833
	</script>
834
</body>
835
</html>

+ 10 - 0
src/main/webapp/register.html

@ -15,6 +15,16 @@
15 15
</head>
16 16

17 17
<body>
18
<div class="completedcover">
19
    <!--/*是否完善信息提示*/-->
20
    <div class="vercompleted">
21
        <h3>已经完成注册,是否现在去完善个人信息?</h3>
22
        <div class="verbtnbox">
23
            <a href="information-add.html" class="verbtn" id="todayPerfect">现在完善</a>
24
            <a href="index.html" class="verbtn"id="afterSay">以后再说</a>
25
        </div>
26
    </div>
27
</div>
18 28
<div id="header"></div>
19 29

20 30
		<!--登录邀请码!-->

+ 1 - 1
src/main/webapp/workspaces.html

@ -24,7 +24,7 @@
24 24
<script type="text/javascript" src="js/workspace.js"></script>
25 25
</head>
26 26

27
<body onload="GuestbookInfo();">
27
<body onload="PaymentInfo();">
28 28

29 29
<div id="header">
30 30
	<a href="index.html" alt="科袖" class="logo"></a>