|
@ -942,4 +942,18 @@ mui('.commentBlock').on('tap', '.useHead,.h1Font', function() {
|
942
|
942
|
}
|
943
|
943
|
});
|
944
|
944
|
}
|
|
945
|
mui("#paperList").on("tap", "li", function() {
|
|
946
|
var id = this.getAttribute("data-id");
|
|
947
|
plus.nativeUI.showWaiting();
|
|
948
|
plus.webview.create("../html/paperShow.html", 'paperShow.html', {}, {
|
|
949
|
"paperId": id
|
|
950
|
});
|
|
951
|
})
|
|
952
|
mui("#patentList").on("tap", "li", function() {
|
|
953
|
var id = this.getAttribute("data-id");
|
|
954
|
plus.nativeUI.showWaiting();
|
|
955
|
plus.webview.create("../html/patentShow.html", 'patentShow.html', {}, {
|
|
956
|
"patentId": id
|
|
957
|
});
|
|
958
|
})
|
945
|
959
|
});
|