|
@ -36,7 +36,23 @@ $(function() {
|
36
|
36
|
proOther = $info.orgName + "," + $info.department
|
37
|
37
|
}
|
38
|
38
|
}else{
|
39
|
|
proOther = $info.orgName
|
|
39
|
if($info.office){
|
|
40
|
proOther = $info.orgName +"," + $info.office
|
|
41
|
}else{
|
|
42
|
proOther = $info.orgName
|
|
43
|
}
|
|
44
|
}
|
|
45
|
}else{
|
|
46
|
if($info.department){
|
|
47
|
if($info.office){
|
|
48
|
proOther = $info.department + "," + $info.office
|
|
49
|
}else{
|
|
50
|
proOther = $info.department
|
|
51
|
}
|
|
52
|
}else{
|
|
53
|
if($info.office){
|
|
54
|
proOther = $info.office
|
|
55
|
}
|
40
|
56
|
}
|
41
|
57
|
}
|
42
|
58
|
$("#proOther").text(proOther);
|
|
@ -518,7 +534,7 @@ $(function() {
|
518
|
534
|
showDiv += "</div></li>";
|
519
|
535
|
|
520
|
536
|
$("#researchAreaShow").append(showDiv);
|
521
|
|
$("#researchAreaList").append("<li class='yjlist'><span class='like'>" + $data.count + "</span><span class='ra'>" + $data.caption + "</span><span class='closeThis'></span></li>");
|
|
537
|
$("#researchAreaList").append("<li class='yjlist'><div><span class='like'>" + $data.count + "</span><span class='ra'>" + $data.caption + "</span><span class='closeThis'></span></div></li>");
|
522
|
538
|
|
523
|
539
|
}
|
524
|
540
|
if( $("#researchAreaShow").find("li").length >= 10) {
|
|
@ -561,7 +577,7 @@ $(function() {
|
561
|
577
|
$("#researchAreaList").parents(".keyResult").siblings("div.col-w-12").hide();
|
562
|
578
|
}
|
563
|
579
|
|
564
|
|
$("#researchAreaList").append("<li class='yjlist'><span class='like'>0</span><span class='ra'>" + researchArea + "</span><span class='closeThis'></span></li>");
|
|
580
|
$("#researchAreaList").append("<li class='yjlist'><div><span class='like'>0</span><span class='ra'>" + researchArea + "</span><span class='closeThis'></span></div></li>");
|
565
|
581
|
$("#researchArea").val("");
|
566
|
582
|
});
|
567
|
583
|
//研究方向删除
|
|
@ -670,7 +686,7 @@ $(function() {
|
670
|
686
|
string +='<option value="其他">其他</option>'
|
671
|
687
|
string +='</select></div></li>'
|
672
|
688
|
string += '<li><span class="col-w-2 lableSpan">毕业时间:</span><div class="col-w-9"><form action="" class="col-w-12" name="formT">'
|
673
|
|
string +='<div class="col-w-5" style="position:relative"><em class="mr_sj"></em><input type="text" class="date-btn frmcontype year" flag="1" placeholder="请选择毕业时间" value="' + data[i].year + '" />'
|
|
689
|
string +='<div class="col-w-5" style="position:relative"><em class="mr_sj"></em><input type="text" class="date-btn frmcontype year" flag="1" placeholder="请选择毕业时间" value="' + data[i].year + '" readonly />'
|
674
|
690
|
string +='<div class="mr_calendar_ym clearfix"><ul class="full_year"></ul></div></div>'
|
675
|
691
|
string +='</form></div></li>'
|
676
|
692
|
string +='<li class="saveBtn"><span class="col-w-2"> </span><div class="col-w-10">'
|
|
@ -705,7 +721,7 @@ $(function() {
|
705
|
721
|
string +='<option value="其他">其他</option>'
|
706
|
722
|
string +='</select></div></li>'
|
707
|
723
|
string += '<li><span class="col-w-2 lableSpan">毕业时间:</span><div class="col-w-9"><form action="" class="col-w-12" name="formT">'
|
708
|
|
string +='<div class="col-w-5" style="position:relative"><em class="mr_sj"></em><input type="text" class="date-btn frmcontype year" flag="1" placeholder="请选择毕业时间" />'
|
|
724
|
string +='<div class="col-w-5" style="position:relative"><em class="mr_sj"></em><input type="text" class="date-btn frmcontype year" flag="1" placeholder="请选择毕业时间" readonly/>'
|
709
|
725
|
string +='<div class="mr_calendar_ym clearfix"><ul class="full_year"></ul></div></div>'
|
710
|
726
|
string +='</form></div></li>'
|
711
|
727
|
string +='<li class="saveBtn"><span class="col-w-2"> </span><div class="col-w-10">'
|
|
@ -824,10 +840,10 @@ $(function() {
|
824
|
840
|
string += '<li><span class="col-w-2 lableSpan"><span class="requiredcon">* </span>职位:</span><div class="col-w-10">'
|
825
|
841
|
string += '<input type="text" class="frmcontype jobTitle" placeholder="请填写担任的职位" value="' + data[i].title + '" /></div></li>'
|
826
|
842
|
string += '<li><span class="col-w-2 lableSpan">任职时间:</span><div class="col-w-9"><form action="" class="col-w-12" name="formT">'
|
827
|
|
string += '<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype StartMonth" flag="2" difference="1" placeholder="请选择起始时间" value="' + sDateV + '" />'
|
|
843
|
string += '<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype StartMonth" flag="2" difference="1" placeholder="请选择起始时间" readonly value="' + sDateV + '" />'
|
828
|
844
|
string +='<div class="mr_calendar_ym clearfix"><ul class="mr_year"></ul><ul class="mr_month"></ul></div></div>'
|
829
|
845
|
string +='<div class="col-w-1 alignCenter">至</div>'
|
830
|
|
string +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype StopMonth" flag="2" difference="2" placeholder="请选择结束时间" value="' + eDateV + '" />'
|
|
846
|
string +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype StopMonth" flag="2" difference="2" placeholder="请选择结束时间" readonly value="' + eDateV + '" />'
|
831
|
847
|
string +='<div class="mr_calendar_ym clearfix"><ul class="mr_year"></ul><ul class="mr_month"></ul></div></div>'
|
832
|
848
|
string +='</form></div></li>'
|
833
|
849
|
string +='<li class="saveBtn"><span class="col-w-2"> </span><div class="col-w-10">'
|
|
@ -848,10 +864,10 @@ $(function() {
|
848
|
864
|
string += '<li><span class="col-w-2 lableSpan"><span class="requiredcon">* </span>职位:</span><div class="col-w-10">'
|
849
|
865
|
string += '<input type="text" class="frmcontype jobTitle" placeholder="请填写担任的职位" /></div></li>'
|
850
|
866
|
string += '<li><span class="col-w-2 lableSpan">任职时间:</span><div class="col-w-9"><form action="" class="col-w-12" name="formT">'
|
851
|
|
string += '<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype StartMonth" flag="2" difference="1" placeholder="请选择起始时间" />'
|
|
867
|
string += '<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype StartMonth" flag="2" difference="1" placeholder="请选择起始时间" readonly />'
|
852
|
868
|
string +='<div class="mr_calendar_ym clearfix"><ul class="mr_year"></ul><ul class="mr_month"></ul></div></div>'
|
853
|
869
|
string +='<div class="col-w-1 alignCenter">至</div>'
|
854
|
|
string +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype StopMonth" flag="2" difference="2" placeholder="请选择结束时间" />'
|
|
870
|
string +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype StopMonth" flag="2" difference="2" placeholder="请选择结束时间" readonly />'
|
855
|
871
|
string +='<div class="mr_calendar_ym clearfix"><ul class="mr_year"> </ul><ul class="mr_month"></ul></div></div>'
|
856
|
872
|
string +='</form></div></li>'
|
857
|
873
|
string +='<li class="saveBtn"><span class="col-w-2"> </span><div class="col-w-10">'
|
|
@ -993,10 +1009,10 @@ $(function() {
|
993
|
1009
|
stringHtml += '<li><span class="col-w-2 lableSpan"><span class="requiredcon">* </span>项目名称:</span><div class="col-w-10">'
|
994
|
1010
|
stringHtml += '<input type="text" class="frmcontype projectName" placeholder="请填写项目名称" value="' + data[i].name + '" /><input type="hidden" class="projectId" value="' + data[i].id + '"></div></li>'
|
995
|
1011
|
stringHtml += '<li><span class="col-w-2 lableSpan">项目时间:</span><div class="col-w-9"><form action="" class="col-w-12" name="formT">'
|
996
|
|
stringHtml += '<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project StartMonth" flag="2" difference="1" placeholder="请选择起始时间" value="' +sDateV + '" />'
|
|
1012
|
stringHtml += '<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project StartMonth" flag="2" difference="1" placeholder="请选择起始时间" readonly value="' +sDateV + '" />'
|
997
|
1013
|
stringHtml +='<div class="mr_calendar_ym clearfix"><ul class="mr_year"></ul><ul class="mr_month"></ul></div></div>'
|
998
|
1014
|
stringHtml +='<div class="col-w-1 alignCenter">至</div>'
|
999
|
|
stringHtml +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project StopMonth" flag="2" difference="2" placeholder="请选择结束时间" value="' + eDateV + '" />'
|
|
1015
|
stringHtml +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project StopMonth" flag="2" difference="2" placeholder="请选择结束时间" readonly value="' + eDateV + '" />'
|
1000
|
1016
|
stringHtml +='<div class="mr_calendar_ym clearfix"><ul class="mr_year"> </ul><ul class="mr_month"></ul></div></div>'
|
1001
|
1017
|
stringHtml +='</form></div></li>'
|
1002
|
1018
|
stringHtml += '<li><span class="col-w-2 lableSpan">项目描述:</span><div class="col-w-10">'
|
|
@ -1016,10 +1032,10 @@ $(function() {
|
1016
|
1032
|
string += '<li><span class="col-w-2 lableSpan"><span class="requiredcon">* </span>项目名称:</span><div class="col-w-10">'
|
1017
|
1033
|
string += '<input type="text" class="frmcontype projectName" placeholder="请填写项目名称" /><input type="hidden" class="projectId"></div></li>'
|
1018
|
1034
|
string += '<li><span class="col-w-2 lableSpan">项目时间:</span><div class="col-w-9"><form action="" class="col-w-12" name="formT">'
|
1019
|
|
string += '<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project StartMonth" flag="2" difference="1" placeholder="请选择起始时间" />'
|
|
1035
|
string += '<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project StartMonth" flag="2" difference="1" readonly placeholder="请选择起始时间" />'
|
1020
|
1036
|
string +='<div class="mr_calendar_ym clearfix"><ul class="mr_year"></ul><ul class="mr_month"></ul></div></div>'
|
1021
|
1037
|
string +='<div class="col-w-1 alignCenter">至</div>'
|
1022
|
|
string +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project StopMonth" flag="2" difference="2" placeholder="请选择结束时间" />'
|
|
1038
|
string +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project StopMonth" flag="2" difference="2" readonly placeholder="请选择结束时间" />'
|
1023
|
1039
|
string +='<div class="mr_calendar_ym clearfix"><ul class="mr_year"> </ul><ul class="mr_month"></ul></div></div>'
|
1024
|
1040
|
string +='</form></div></li>'
|
1025
|
1041
|
string += '<li><span class="col-w-2 lableSpan">项目描述:</span><div class="col-w-10">'
|
|
@ -1132,7 +1148,7 @@ $(function() {
|
1132
|
1148
|
stringHtml += '<li><span class="col-w-2 lableSpan"><span class="requiredcon">* </span>奖项名称:</span><div class="col-w-10">'
|
1133
|
1149
|
stringHtml += '<input type="text" class="frmcontype honorName" placeholder="请填写奖项名称" value="' + data[i].name + '" /><input type="hidden" class="honorId" value="' + data[i].id + '"></div></li>'
|
1134
|
1150
|
stringHtml += '<li><span class="col-w-2 lableSpan">获奖时间:</span><div class="col-w-9"><form action="" class="col-w-12" name="formT">'
|
1135
|
|
stringHtml +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project honorYear" placeholder="请填写奖项时间" flag="1" value="' + data[i].year + '" />'
|
|
1151
|
stringHtml +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype project honorYear" placeholder="请填写奖项时间" readonly flag="1" value="' + data[i].year + '" />'
|
1136
|
1152
|
stringHtml +='<div class="mr_calendar_ym clearfix"><ul class="full_year"></ul></div></div>'
|
1137
|
1153
|
stringHtml +='</form></div></li>'
|
1138
|
1154
|
stringHtml += '<li><span class="col-w-2 lableSpan">获奖描述:</span><div class="col-w-10">'
|
|
@ -1150,7 +1166,7 @@ $(function() {
|
1150
|
1166
|
string += '<li><span class="col-w-2 lableSpan"><span class="requiredcon">* </span>奖项名称:</span><div class="col-w-10">'
|
1151
|
1167
|
string += '<input type="text" class="frmcontype honorName" placeholder="请填写奖项名称" /><input type="hidden" class="honorId"></div></li>'
|
1152
|
1168
|
string += '<li><span class="col-w-2 lableSpan">项目时间:</span><div class="col-w-9"><form action="" class="col-w-12" name="formT">'
|
1153
|
|
string +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype honorYear" flag="1" placeholder="请选择获奖时间" />'
|
|
1169
|
string +='<div class="col-w-5" style="position:relative"><input type="text" class="date-btn frmcontype honorYear" flag="1" readonly placeholder="请选择获奖时间" />'
|
1154
|
1170
|
string +='<div class="mr_calendar_ym clearfix"><ul class="full_year"></ul></div></div>'
|
1155
|
1171
|
string +='</form></div></li>'
|
1156
|
1172
|
string += '<li><span class="col-w-2 lableSpan">获奖描述:</span><div class="col-w-10">'
|
|
@ -1227,7 +1243,7 @@ $(function() {
|
1227
|
1243
|
$(".headconBox").on("click",".proEdit",function() {
|
1228
|
1244
|
$(this).parents(".coninfocon").siblings(".modifybox").show();
|
1229
|
1245
|
$(this).parents(".coninfocon").hide();
|
1230
|
|
$(".head-left").css("top","30px");
|
|
1246
|
$(".head-left").css("top","100px");
|
1231
|
1247
|
//点击取消的操作
|
1232
|
1248
|
$(".btnCancel").click(function() {
|
1233
|
1249
|
$(".head-left").css("top","");
|