$(function(){ loginStatus();//读取用户头像 var userid = $.cookie("userid"); var professorId = GetQueryString("professorId"); var name; if(professorId){ var subjectShow = function (data){ if(data != undefined && data.length != 0 ){ var subs = new Array(); if(data.indexOf(',')){ subs = data.split(','); }else{ subs[0] = data; } if(subs.length>0){ for (var i = 0; i < subs.length; i++) { $("#subjectShow").append("
资源名称:'+ data.data[i].resourceName+'
' add+='应用用途:'+data.data[i].supportedServices+'
' add+='' $("#sharescrollbox").append(add); $('.applicant').eq(i).attr("resourceId",data.data[i].resourceId); $(".resourceImg").eq(i).attr("src","/images/resource/"+data.data[i].resourceId+".jpg"); $(".resourceImg").load(function(){}) .error(function(){ $(this).attr("src","/images/default-resource.jpg"); }); add=""; } //资源轮播 var $content = $(".sharescrollbox"); var childcount = $content.find(".sharesrc").length; Carousel(3,3,3,childcount, $content, $(".resounext"), $(".resouprev")); //科研资源中点咨询 $(".introduction").find(".resourceConsult").bind("click",clickResourceConsult); } else { $.MsgBox.Alert("消息","系统异常!"); } }, "error":function(){$.MsgBox.Alert('message','failddd')} }); function getIdentity(professorId){ $.ajax({ "url":"ajax/professor/"+professorId, "type":"get", "async": false, "success":function(data){ if(data.success) { //console.log(data); $("option")[0].value=data.data.name; $("option")[1].value=data.data.organization.name; //console.log($("option")[0].value); //console.log($("option")[1].value); } else { $.MsgBox.Alert("消息","系统异常!"); } }, "error":function(){$.MsgBox.Alert('message','failddd')} }) } //查看资源详细信息 $('#sharescrollbox').on("click",'.remess',function(){ var resourceID=$(this).attr("resourceId"); ResourceMessage(); $.ajax({ "url":"/ajax/resource/"+resourceID, "type":"get", "async": true, "success":function(info){ if(info.success) { console.log(info); $("#resourceName").text(info.data.resourceName); $("#supportedServices").text(info.data.supportedServices); $("#hopePayMethod").text(info.data.hopePayMethod) ; $("#cooperationNotes").text(info.data.cooperationNotes) ; $("#subject").text(info.data.subject); $("#industry").text(info.data.industry); $("#descp").text(info.data.descp); $("#professor").text(name); $(".resouImage").attr("src","/images/resource/"+resourceID+".jpg"); $(".resouImage").load(function(){}) .error(function(){ $(this).attr("src","/images/default-resource.jpg"); }); } else { $.MsgBox.Alert('message',"系统异常!"); } }, "error":function(){$.MsgBox.Alert('message','failed')} }); }) //资源申请入口 $('.introduction').on("click",'.applicant',function(){ if(userid && userid != null && userid != "null"){ ResourceApply();//调用资源申请HTML创建函数 $(".limitBox").removeClass("limitBox"); $(".limitwords").removeClass("limitwords"); $(".limitwordbox").removeClass("limitwordbox"); //获取当前时间并且格式化时间 var myDate = new Date(); var nowYear = myDate.getFullYear(); var nowMonth = myDate.getMonth()+1; var nowDate = myDate.getDate(); if(nowMonth<10){ nowMonth="0"+nowMonth.toString(); } if(nowDate<10){ nowDate="0"+nowDate.toString(); } var now = nowYear + "-" + nowMonth + "-" + nowDate; $( "#datepicker").val(now); $( "#datepicker" ).datepicker({ "dateFormat":" yy-mm-dd"}); $(".timelo").css("display","none"); $(".namecon").text(name); $(".applysure").hide(); $(".btnboxup").hide(); var index1=$(this).parent().parent().parent().index(); var resName=$('.presou').eq(index1).text(); var resourceID=$(this).attr("resourceId"); $.ajax({ "url":"/ajax/resource/"+resourceID, "type":"get", "async": false, "success":function(info) { if(info.success) { if(info.data.images.length) { $(".resouImage").attr("src","/images/resource/"+resourceID+".jpg"); } else{ $(".resouImage").attr("src","/images/default-resource.jpg"); } } } }) $(".log").text(resName); getIdentity(userid); $("#deliver").on("click",function() { var $data = {}; $data.demandId = userid; $data.resourceId=resourceID; $data.detailDemand=$(".detail").val(); //去除时间里面的- 和字符串前后的空格 $data.deliverTime=replaceStr($.trim($(".dealTime").val())); //alert(replaceStr($.trim($(".dealTime").val()))); //alert(replaceStr($.trim($(".dealTime").val())).length); $data.operationStatus=1; $data.applysquare=$("select option:selected").val(); //console.log($data.applysquare); $.ajax({ "url" : "/ajax/operation", "type" : "POST", "success" : function(rdata) { if (rdata.success) { $.MsgBox.Alert('message','资源"'+ resName +'"申请发送成功!'); $(".blackcover").remove(); $("body").css("position","static"); //location.reload(true); } else { $.MsgBox.Alert('message','资源"'+ resName +'"申请发送失败,请重新申请!'); } }, "data" : $data, "beforeSend":function(){/*console.log(this.data)*/}, "contentType" : "application/x-www-form-urlencoded", dataType : "json" }); }); }else{ $.MsgBox.Alert("消息","您还未登录,请登录之后进行资源申请"); } }); //科研资源中的咨询 function clickResourceConsult(){ if(userid && userid != null && userid != 'null' && userid != undefined && userid != 'undefined'){ var professorId = $(this).attr("professorId"); consultHandler(); var liEle = $("ul.menucon").children(); for(var i = 0; i < liEle.length; i ++){ $(liEle[i]).removeClass('clicknow'); $(liEle[1]).addClass("clicknow"); }; var item = $(this).parent().parent().parent(); var consultTitleVal = item.find(".consultTitleVal").text(); $("#consultTitle").val("关于"+consultTitleVal+"的咨询"); }else { $.MsgBox.Alert("消息提醒","请先登录再进行咨询"); $("#mb_btn_ok").val("去登录"); var aele = document.createElement('a'); $("#mb_btnbox").append(aele); $("#mb_btnbox a").css({ 'display':"block", 'width':'100%', 'height':'40px', 'position':'absolute', 'bottom':'-6px', 'left':'0' }); aele.setAttribute('href', '../login.html'); } }; //===============点击咨询============== var userid = $.cookie("userid");//登陆人id====重复代码 var professorId = GetQueryString("professorId");//专家id====重复代码 //点击科研资源的咨询 $("#consultbtn,#conbtn").bind('click',consultHandler); function consultHandler() { if(userid && userid != null && userid != 'null' && userid != undefined && userid != 'undefined'){ ConsultApply(); concultProInfo(professorId); //点击的发送 $("#sendConsultBtn").click(function(){ sendConsultHandler($(this).attr("proId")); }); }else { $.MsgBox.Alert("消息提醒","请先登录再进行咨询"); $("#mb_btn_ok").val("去登录"); var aele = document.createElement('a'); $("#mb_btnbox").append(aele); $("#mb_btnbox a").css({ 'display':"block", 'width':'100%', 'height':'40px', 'position':'absolute', 'bottom':'-6px', 'left':'0' }); aele.setAttribute('href', '../login.html'); } }; //合作历史及评价 var ass; $.ajax({ "url":"/ajax/consult/pqAssessHis", "type":"get", "data":{"professorId":professorId}, "async": false, "success":function(response) { if(response.success) { var $data=response.data.data; ass=$data.length; if($data.length==0) { $("span:contains('合作历史及评价')").parents(".introduction").hide(); $("a:contains('合作历史及评价')").hide(); } for(var i=0;i<$data.length;i++) { var add=""; var assessTime=$data[i]["assessTime"].substr(0,4) + "-" + $data[i].assessTime.substr(4,2) + "-" + $data[i].assessTime.substr(6,2) + " " + $data[i].assessTime.substr(8,2)+ ":" + $data[i].assessTime.substr(10,2); add+=''+$data[i].professor.name+'
' // if($data[i].professor.office) { // add+=''+$data[i].professor.office+' ,' // } // if($data[i].professor.title) { // add+=''+$data[i].professor.title+'' // } add+='
' // if($data[i].professor.department) { // add+=''+$data[i].professor.department+' ,' // } // if($data[i].professor.orgName) { // add+=''+$data[i].professor.orgName+'' // } add+='
' add+=''+$data[i].assessContant+'
' } add+='