|
@ -75,15 +75,7 @@
|
75
|
75
|
<div class="madiaBlock displayNone" id="patentModule">
|
76
|
76
|
<div class="madiaTit">您可能感兴趣的专利</div>
|
77
|
77
|
<ul class="mui-table-view" id="patentList">
|
78
|
|
<li class="mui-table-view-cell">
|
79
|
|
<div class="flexCenter OflexCenter mui-clearfix">
|
80
|
|
<div class="madiaHead patentHead"></div>
|
81
|
|
<div class="madiaInfo OmadiaInfo">
|
82
|
|
<p class="ellipsisSty h1Font">CdS/CdSSe轴向异质结纳米线的非对称光波导及双波长激射</p>
|
83
|
|
<p class="ellipsisSty h2Font">作者:李丹,梁君武,刘华伟,张学红,万强,张清林,潘安练</p>
|
84
|
|
</div>
|
85
|
|
</div>
|
86
|
|
</li>
|
|
78
|
|
87
|
79
|
</ul>
|
88
|
80
|
</div>
|
89
|
81
|
<div class="madiaBlock displayNone" style="padding-bottom:50px;" id="leword">
|
|
@ -118,6 +110,26 @@ $(document).ready(function() {
|
118
|
110
|
var appid = '';
|
119
|
111
|
|
120
|
112
|
var patentId = GetQueryString("id");
|
|
113
|
isAgreeNum()
|
|
114
|
function isAgreeNum() {
|
|
115
|
var data = {"id": patentId}
|
|
116
|
$.ajax({
|
|
117
|
url:"/ajax/ppatent/agreeCount",
|
|
118
|
data:data,
|
|
119
|
dataType: 'json', //数据格式类型
|
|
120
|
type: 'get', //http请求类型
|
|
121
|
timeout: 10000,
|
|
122
|
async: true,
|
|
123
|
success: function(data) {
|
|
124
|
if(data.success){
|
|
125
|
$(".thumbBtn").html("赞 <span>" + data.data + "</span>");
|
|
126
|
}
|
|
127
|
},
|
|
128
|
error: function() {
|
|
129
|
$.MsgBox.Alert('提示',"服务器链接超时");
|
|
130
|
}
|
|
131
|
});
|
|
132
|
}
|
121
|
133
|
leword();
|
122
|
134
|
function leword(){
|
123
|
135
|
$.ajax({
|
|
@ -166,6 +178,13 @@ $(document).ready(function() {
|
166
|
178
|
}
|
167
|
179
|
});
|
168
|
180
|
}
|
|
181
|
$(".commentBlock").on("click","li>div",function(){
|
|
182
|
location.href="p.html?id="+this.attr("data-id");
|
|
183
|
})
|
|
184
|
$("body").on("click",".authicon,.thumbBtn",function(){
|
|
185
|
location.href="http://a.app.qq.com/o/simple.jsp?pkgname=com.ekexiu.app";
|
|
186
|
$(this).addClass("activeThis");
|
|
187
|
})
|
169
|
188
|
paperInterestingList()
|
170
|
189
|
function paperInterestingList(){
|
171
|
190
|
$.ajax({
|
|
@ -185,13 +204,12 @@ $(document).ready(function() {
|
185
|
204
|
$("#patentModule").show();
|
186
|
205
|
var itemlist = '';
|
187
|
206
|
for(var i = 0; i < dataStr.length; i++) {
|
188
|
|
var itemlist = '<li class="mui-table-view-cell">';
|
189
|
|
itemlist += '<a target="_blank" href="z.html?patentId=' + dataStr[i].id +'" class="linkhref" style="color:##333"><div class="madiaHead patentHead"></div>';
|
|
207
|
var itemlist = '<li class="mui-table-view-cell" data-id="'+dataStr[i].id+'">';
|
|
208
|
itemlist += '<div class="madiaHead patentHead"></div>';
|
190
|
209
|
itemlist += '<div class="madiaInfo OmadiaInfo">';
|
191
|
210
|
itemlist += '<p class="h1font ellipsisSty">'+ dataStr[i].name +'</p>';
|
192
|
211
|
itemlist += '<p class="h1font ellipsisSty">发明人:'+ dataStr[i].authors.substring(0, dataStr[i].authors.length - 1) +'</p>';
|
193
|
|
itemlist += '<p class="h2font ellipsisSty">申请人:'+ dataStr[i].reqPerson +'</p>';
|
194
|
|
itemlist += '</div></a></li>';
|
|
212
|
itemlist += '</div></li>';
|
195
|
213
|
$itemlist = $(itemlist);
|
196
|
214
|
$("#patentList").append($itemlist);
|
197
|
215
|
}
|
|
@ -203,6 +221,9 @@ $(document).ready(function() {
|
203
|
221
|
}
|
204
|
222
|
});
|
205
|
223
|
}
|
|
224
|
$("#patentList").on("click","li",function(){
|
|
225
|
location.href="z.html?id="+this.attr("data-id");
|
|
226
|
});
|
206
|
227
|
getRecourceMe();
|
207
|
228
|
$.ajax({
|
208
|
229
|
"url": "../ajax/ppatent/incPageViews",
|