|
@@ -320,8 +320,8 @@ $(function() {
|
|
|
tabListsConcrol()
|
|
|
|
|
|
function tabListsConcrol() {
|
|
|
- var $tabBtn = $(".seaTender-inner .right-tabBtn button"),
|
|
|
- $controlDiv = $(".tabContainer>div"),
|
|
|
+ var $tabBtn = $(".seaTender-inner .right-tabBtn button");
|
|
|
+ $controlDiv = $(".tabContainer>div");
|
|
|
$controlDiv_2 = $(".tabContainer-2>div");
|
|
|
$tabBtn.on("click", function() {
|
|
|
if($(this).attr("id")=="right-table"){
|
|
@@ -367,14 +367,22 @@ $(function() {
|
|
|
$("#labModal").modal("show");
|
|
|
}
|
|
|
}
|
|
|
- }else{
|
|
|
+ }else if($(this).attr("id")=="right-list"){
|
|
|
$(this).addClass("active").siblings().removeClass("active");
|
|
|
$controlDiv.eq($(this).index()).show().siblings().hide();
|
|
|
$controlDiv_2.eq($(this).index()).show().siblings().hide();
|
|
|
+ }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{
|
|
|
+ //已登录跳转订单支付页面
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
})
|
|
|
-
|
|
|
}
|
|
|
|
|
|
/*全文搜索 标题搜索 添加类名*/
|