|
|
|
|
706
|
var id = this.getAttribute("data-id");
|
706
|
var id = this.getAttribute("data-id");
|
707
|
plus.nativeUI.showWaiting();
|
707
|
plus.nativeUI.showWaiting();
|
708
|
plus.webview.create("../html/patentShow.html", 'patentShow.html', {}, {
|
708
|
plus.webview.create("../html/patentShow.html", 'patentShow.html', {}, {
|
709
|
"id": id
|
|
|
|
|
709
|
"paperId": id
|
710
|
});
|
710
|
});
|
711
|
})
|
711
|
})
|
712
|
mui("#patentList").on("tap", "li", function() {
|
712
|
mui("#patentList").on("tap", "li", function() {
|
713
|
var id = this.getAttribute("data-id");
|
713
|
var id = this.getAttribute("data-id");
|
714
|
plus.nativeUI.showWaiting();
|
714
|
plus.nativeUI.showWaiting();
|
715
|
plus.webview.create("../html/paperShow.html", 'paperShow.html', {}, {
|
715
|
plus.webview.create("../html/paperShow.html", 'paperShow.html', {}, {
|
716
|
"id": id
|
|
|
|
|
716
|
"patentId": id
|
717
|
});
|
717
|
});
|
718
|
})
|
718
|
})
|
719
|
mui("#companyList").on("tap", "li", function() {
|
719
|
mui("#companyList").on("tap", "li", function() {
|
720
|
var id = this.getAttribute("data-id");
|
720
|
var id = this.getAttribute("data-id");
|
721
|
plus.nativeUI.showWaiting();
|
721
|
plus.nativeUI.showWaiting();
|
722
|
plus.webview.create("../html/cmpInforShow.html", 'cmpInforShow.html', {}, {
|
722
|
plus.webview.create("../html/cmpInforShow.html", 'cmpInforShow.html', {}, {
|
723
|
"id": id
|
|
|
|
|
723
|
"cmpId": id
|
724
|
});
|
724
|
});
|
725
|
})
|
725
|
})
|
726
|
//找专家搜索条件及自定义事件
|
726
|
//找专家搜索条件及自定义事件
|