|
@@ -77,7 +77,8 @@ var SuperSearch = {
|
|
|
}
|
|
|
this.initFlag = true;
|
|
|
$("#supersearchPage #wrapper .more").on("click",function(){
|
|
|
- JyObj.openExternalLink(myDomain()+"/sjdc/index.html","");
|
|
|
+ toSearchExport();
|
|
|
+ //JyObj.openExternalLink(myDomain()+"/sjdc/index.html","");
|
|
|
});
|
|
|
$("#supersearchPage #feedback").on("tap",function(){
|
|
|
SuperSearch.goToFeedbackPage();
|
|
@@ -500,7 +501,7 @@ var SuperSearch = {
|
|
|
});
|
|
|
SuperSearch.initMobiscroll();
|
|
|
//返回时 是否显示table的查看更多
|
|
|
- if($(".showlist").hasClass("on")){
|
|
|
+ if($(".newdialog .tab-box .sub-show-list").find("li.active").attr('dataVal')=="showlist"){
|
|
|
SuperSearch.isTable(false);
|
|
|
}else{
|
|
|
SuperSearch.isTable(true);
|
|
@@ -667,7 +668,7 @@ var SuperSearch = {
|
|
|
});
|
|
|
//判断是否是table (2.7.5table只显示20条数据)
|
|
|
if(!sessionStorage.superSearch_showType){
|
|
|
- if($(".showlist").hasClass("on")){
|
|
|
+ if($(".newdialog .tab-box .sub-show-list").find("li.active").attr('dataVal')=="showlist"){
|
|
|
SuperSearch.isTable(false);
|
|
|
}else{
|
|
|
SuperSearch.isTable(true);
|
|
@@ -1773,12 +1774,14 @@ var SuperSearch = {
|
|
|
// $("#supersearchPage .showtable").addClass("on").siblings().removeClass("on");
|
|
|
$("#supersearchPage #wrapper #table").removeClass("hidden");
|
|
|
$("#supersearchPage #wrapper #list").addClass("hidden");
|
|
|
+ SuperSearch.isTable(true);
|
|
|
}else{
|
|
|
$(".selected-export .show-list").find("em").text("列表显示");
|
|
|
$(".newdialog .sub-show-list").find("li[dataval='showlist']").addClass("active");
|
|
|
// $("#supersearchPage .showlist").addClass("on").siblings().removeClass("on");
|
|
|
$("#supersearchPage #wrapper #table").addClass("hidden");
|
|
|
$("#supersearchPage #wrapper #list").removeClass("hidden");
|
|
|
+ SuperSearch.isTable(false);
|
|
|
}
|
|
|
},
|
|
|
getIndustry: function(){
|