$(document).ready(function() { function Patent() { this.init(); this.flag = GetQueryString("flag"); } Patent.prototype.init = function() { loginStatus(); ifcollectionAbout(GetQueryString("patentId")); this.ajax({ url: "/ajax/ppatent/qo", data: { id: GetQueryString("patentId") }, type: "get", Fun: this.patentMess }); this.ajax({ url: "/ajax/ppatent/authors", data: { id: GetQueryString("patentId") }, type: "get", Fun: this.patentAuth }); this.ajax({ url: "/ajax/ppatent/incPageViews", data: { id: GetQueryString("patentId") }, type: "post", Fun: this.pageview }); } Patent.prototype.ajax = function(obj) { var $this = this; $.ajax({ url: obj.url, data: obj.data, dataType: 'json', //服务器返回json格式数据 type: obj.type, //HTTP请求类型 timeout: 10000, //超时时间设置为10秒; traditional: true, async:false, success: function(data) { if(data.success) { obj.Fun(data.data, $this); } }, error: function() { $this.Fail(); } }); } Patent.prototype.Fail = function() { $.MsgBox.Alert('提示', "服务器链接超时"); } Patent.prototype.keyword = function($key) { for(var i in $key.split(",")) { if(GetQueryString("flag")== 1) { if($key.split(",").length>=5) { $(".oinput").parents(".col-w-12").hide(); } $("#paperSList").append("
  • " + $key.split(",")[i] + "

  • "); } else { $(".tagList").append("
  • " + $key.split(",")[i] + "

  • "); } } } Patent.prototype.patentMess = function($data, $obj) { if(GetQueryString("flag") == 1) { $(".advertItem,.tagList").hide(); hotKey(".oinput", 10); if($data.keywords) { $obj.keyword($data.keywords); } } else { $(".oinput").parents(".form-item").hide(); $(".conItem").hide(); if($data.keywords) { $obj.keyword($data.keywords); } else { $(".tagList").hide(); } } if($data.name) { $("#paperName").text($data.name); document.title=$data.name; } $("#pageview").text($data.pageViews); if($data.reqCode) { $(".showCon").eq(0).text($data.reqCode); } else { $(".showCon").eq(0).parents("li").hide(); } if($data.code) { $(".showCon").eq(1).text($data.code); } else { $(".showCon").eq(1).parents("li").hide(); } $(".showCon").eq(2).text(TimeTr($data.reqDay)); $(".showCon").eq(3).text(TimeTr($data.pubDay)); $(".showCon").eq(4).text($data.reqPerson); if($data.summary) { $(".showCon").eq(5).text($data.summary); } var weibotitle = $data.name; var weibourl = window.location.href; var weibopic = "http://" + window.location.host + "/images/default-patent.jpg"; $("#weibo").attr("href", "http://service.weibo.com/share/share.php?appkey=3677230589&title=" + encodeURIComponent(weibotitle) + "&url=" + encodeURIComponent(weibourl) + "&pic=" + encodeURIComponent(weibopic) + "&content=utf-8" + "&ralateUid=6242830109&searchPic=false&style=simple"); $obj.bindEvent($obj); } Patent.prototype.patentAuth = function($data, $obj) { for(var i in $data) { if($data[i].professorId.substring(0, 1) == "#") { var otr = '
  • ' + '
    ' + '
    ' + '

    ' + '' + $data[i].name + '' + '

    ' + '
    ' if($data[i].name==$.cookie("userName")){ otr += '
    是我本人
    ' }else{ otr += '
    邀请'+ '
    '+ '

    打开微信“扫一扫”,
    打开网页后点击屏幕右上角“分享”按钮

    '+ '
    ' } otr += '
  • ' $("#faM .lastBtn").before(otr); } else { $obj.ajax({ url: "/ajax/professor/editBaseInfo/" + $data[i].professorId, data: {}, type: "get", Fun: $obj.profess }); } if($data.length<5){ $("#faM li").css("display","block"); $(".lastBtn").hide(); }else{ $(".lastBtn").find("span").text($data.length); $("#faM li:lt(3)").css("display","block"); } if(GetQueryString("flag") == 1){ $("#faM li").css("display","block"); $("#faM li .goSpan").hide(); $(".lastBtn").hide(); } } //邀请 $(".goSpan").on("mouseenter",".yaoqing",function(){ $(this).find('.shareCode').stop(true,false).fadeIn(); }).on("mouseleave",".yaoqing",function(){ $(this).find('.shareCode').stop(true,false).fadeOut(); }); //邀请作者 var Qcu=document.getElementsByClassName("qrcodeUser"); for(var i=0;i' + '
    ' + '
    ' + '

    ' + '' + $data.name + '' + '

    ' + '

    ' + arr[2] + '

    ' + '

    ' if(oId==userid){ otr += '' }else{ otr += '
    关注
    ' } otr += '' var $otr=$(otr); $("#faM .lastBtn").before(otr); ifcollectionAboutP(oId,$otr.find(".attenSpan")); } Patent.prototype.bindEvent = function($obj) { $("#faM").on("click", "li>a", function() { if(GetQueryString("flag") !=1){ var oDataId = $(this).attr("data-id"); if(oDataId.substring(0,1)!="#"){ $(this).attr("href","userInforShow.html?professorId="+oDataId); }else{ $(this).attr("href","javascript:void(0)"); } }else{ $(this).attr("href","javascript:void(0)"); } }) $('#attention em').click(function() { if(userid && userid != "null" && userid != null) { if($(this).is('.icon-collected')) { cancelCollectionAbout(GetQueryString("patentId"), 4); } else { collectionAbout(GetQueryString("patentId"), 4); } } 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'); } }) $("body").on("click", ".closeThis", function() { if($(this).parent().length < 5) { $(this).parents(".keyResult").siblings("div").show(); } $(this).parent().remove(); }); $("#release").on("click", function() { $.MsgBox.Confirm("提示", "确认发布该专利?", $obj.pubPatent); }); $("#delete").on("click", function() { $.MsgBox.Confirm("提示", "确认删除该专利?", $obj.delePatent); }); $(".lastBtn").on("click", function() { $("#faM li").css("display","block"); $(this).hide(); }); $(".tagList").on("click","li",function() { location.href = "searchNew.html?searchContent=" + $(this).text() + "&tagflag=5"; }); //点击关注按钮 $("#faM").on('click',"span.attenSpan", function() { var pId=$(this).parent().siblings("a").attr("data-id"); if(userid && userid != null && userid != "null") { if($(this).is('.attenedSpan')){ cancelCollectionAboutP(pId, $(this)) } else { collectionAboutP(pId, $(this)); } }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'); } }); } Patent.prototype.pageview = function() {}; Patent.prototype.captiureSubInd = function(subIndu) { var industrys = $("#" + subIndu + "").find("li"); var industryAll = ""; if(industrys.size() > 0) { for(var i = 0; i < industrys.size(); i++) { industryAll += industrys[i].innerText; industryAll += ','; }; industryAll = industryAll.substring(0, industryAll.length - 1); } return industryAll; } Patent.prototype.pubPatent = function() { var $key = oPent.captiureSubInd("paperSList"); oPent.ajax({ url: "/ajax/ppatent/kw", data: { id: GetQueryString("patentId"), keywords: $key }, type: "post", Fun: oPent.pubsucess }); } Patent.prototype.pubsucess = function() { $.MsgBox.Alert('提示', '专利发布成功!'); $("#mb_msgicon").css("background", 'url("images/sign_icon_chenggong_nor.png") 0% 0% / contain'); location.href = "patentList.html" } Patent.prototype.delePatent = function() { oPent.ajax({ url: "/ajax/ppatent/cAss", data: { id: GetQueryString("patentId"), uid:$.cookie("userid") }, type: "post", Fun: oPent.delsucess }); } Patent.prototype.delsucess = function() { location.href = "patentList.html" } var oPent = new Patent(); //纠错反馈 $(".footer_tools").hide(); $(".correctSubmit").on("click",function(){ var cntCon=$(this).siblings(".correctCon").val(); var cntUser=""; if(userid && userid != null && userid != "null") { cntUser = userid; } if(cntCon.length>500){ $.MsgBox.Alert('提示', '纠错反馈内容不得超过500个字'); return; }else{ $.ajax({ "url": "/ajax/feedback/error/patent", "type": "POST", "dataType": "json", "async": true, "data": { "id":GetQueryString("patentId"), "cnt":cntCon, "user":cntUser }, "success": function(data) { if(data.success) { console.log(data); backSuccessed(); } }, "error": function() { $.MsgBox.Alert('提示', '链接服务器超时') } }); } }) if( GetQueryString("flag")==1){ $(".feedBack").click(function(){ $("#feedbackBox").fadeToggle(); }) $(".closeFeed").click(function(){ $("#feedbackBox").fadeOut(); }) }else{ $(".footer_tools").show(); } /*判断是否收藏资源文章或者是否关注专家*/ function ifcollectionAboutP(watchObject, sel) { var that=sel; $.ajax('/ajax/watch/hasWatch', { data: { "professorId": userid, "watchObject": watchObject }, dataType: 'json', //数据格式类型 type: 'get', //http请求类型 timeout: 10000, async: false, success: function(data) { if(data.success && data.data != null) { $(that).addClass("attenedSpan"); $(that).text("已关注"); } else { $(that).removeClass("attenedSpan"); $(that).text("关注"); } }, error: function(data) { $.MsgBox.Alert('提示', "服务器链接超时"); } }); } /*收藏资源、文章或者关注专家*/ function collectionAboutP(watchObject,sel) { var that=sel; $.ajax('/ajax/watch', { data: { "professorId": userid, "watchObject": watchObject }, dataType: 'json', //数据格式类型 type: 'POST', //http请求类型 timeout: 10000, async: false, success: function(data) { if(data.success) { $(that).addClass("attenedSpan"); $(that).text("已关注"); } }, error: function(data) { $.MsgBox.Alert('提示', "服务器链接超时"); } }); } /*取消收藏资源、文章或者取消关注专家*/ function cancelCollectionAboutP(watchObject,sel) { var that=sel; $.ajax({ url: '/ajax/watch/delete', data: { professorId: userid, watchObject: watchObject }, dataType: 'json', //数据格式类型 type: 'post', //http请求类型 timeout: 10000, async: true, success: function(data) { console.log(data.success) if(data.success) { $(that).removeClass("attenedSpan"); $(that).text("关注"); } }, error: function(data) { $.MsgBox.Alert('提示', "服务器链接超时"); } }); } })