|
@@ -381,21 +381,11 @@ $(function() {
|
|
|
}
|
|
|
}else if($(this).attr("id")=="right-export"){
|
|
|
//数据导出
|
|
|
- if(!loginflag){
|
|
|
- unseatflag = true;
|
|
|
- $(".code-text").html('<span style="font-size:22px;margin-top:10px;display:inline-block;color:#252627;font-weight:normal;"><img id="wxpng" src="/images/wx1.png">请先微信扫码登录</span>')
|
|
|
- $("#bidLogin").modal("show");
|
|
|
- }else{
|
|
|
- //已登录跳转订单支付页面
|
|
|
- window.history.replaceState(null, null, "/jylab/supsearch/index.html?goback"+new Date().getTime());
|
|
|
- $("#zbSeatchT").attr("action","/front/dataExport/superSearchExport");
|
|
|
- $("#zbSeatchT").removeAttr("onsubmit");
|
|
|
- $("#zbSeatchT").submit();
|
|
|
- }
|
|
|
+ toPaydataExport();
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
/*全文搜索 标题搜索 添加类名*/
|
|
|
luceneTab();
|
|
|
|
|
@@ -412,4 +402,19 @@ $(function() {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-})
|
|
|
+})
|
|
|
+
|
|
|
+//携带当前检索跳转数据导出支付页面
|
|
|
+function toPaydataExport(){
|
|
|
+ if(!loginflag){
|
|
|
+ unseatflag = true;
|
|
|
+ $(".code-text").html('<span style="font-size:22px;margin-top:10px;display:inline-block;color:#252627;font-weight:normal;"><img id="wxpng" src="/images/wx1.png">请先微信扫码登录</span>')
|
|
|
+ $("#bidLogin").modal("show");
|
|
|
+ }else{
|
|
|
+ //已登录跳转订单支付页面
|
|
|
+ window.history.replaceState(null, null, "/jylab/supsearch/index.html?goback"+new Date().getTime());
|
|
|
+ $("#zbSeatchT").attr("action","/front/dataExport/superSearchExport");
|
|
|
+ $("#zbSeatchT").removeAttr("onsubmit");
|
|
|
+ $("#zbSeatchT").submit();
|
|
|
+ }
|
|
|
+}
|