|
@@ -175,10 +175,10 @@
|
|
|
<div class="jy_sprite_home_icon icon_1"></div>
|
|
|
<span>投标决策</span>
|
|
|
</a>
|
|
|
- <a class="tab_item" data-only-name="潜在项目预测" id="mainSearch-tab2">
|
|
|
+ <!-- <a class="tab_item" data-only-name="潜在项目预测" id="mainSearch-tab2">
|
|
|
<div class="jy_sprite_home_icon_add icon_9"></div>
|
|
|
<span>潜在项目预测</span>
|
|
|
- </a>
|
|
|
+ </a> -->
|
|
|
<a class="tab_item" data-only-name="中标企业预测" id="mainSearch-tab3">
|
|
|
<div class="jy_sprite_home_icon icon_3"></div>
|
|
|
<span>中标企业预测</span>
|
|
@@ -190,7 +190,11 @@
|
|
|
<a class="tab_item" data-only-name="剑鱼文库" id="">
|
|
|
<div class="jy_sprite_home_icon icon_2"></div>
|
|
|
<span>剑鱼文库</span>
|
|
|
- </a>
|
|
|
+ </a>
|
|
|
+ <a class="tab_item" data-only-name="剑鱼伙伴" id="mainSearch-tab2">
|
|
|
+ <div class="jy_sprite_home_icon_add icon_9"></div>
|
|
|
+ <span>剑鱼伙伴</span>
|
|
|
+ </a>
|
|
|
</div>
|
|
|
<div class="tab_container">
|
|
|
<a class="tab_item" data-only-name="数据导出" id="mainSearch-tab5">
|
|
@@ -953,17 +957,17 @@
|
|
|
}
|
|
|
break
|
|
|
}
|
|
|
- case '潜在项目预测': {
|
|
|
- sessionStorage.setItem('landinfo', JSON.stringify({
|
|
|
- anchor: '潜在项目预测'
|
|
|
- }))
|
|
|
- if ($this.attr('data-access')) {
|
|
|
- window.location.href = '/jyapp/big/page/forecast_list';
|
|
|
- } else {
|
|
|
- location.href = '/jyapp/big/page/landingPage';
|
|
|
- }
|
|
|
- break
|
|
|
- }
|
|
|
+ // case '潜在项目预测': {
|
|
|
+ // sessionStorage.setItem('landinfo', JSON.stringify({
|
|
|
+ // anchor: '潜在项目预测'
|
|
|
+ // }))
|
|
|
+ // if ($this.attr('data-access')) {
|
|
|
+ // window.location.href = '/jyapp/big/page/forecast_list';
|
|
|
+ // } else {
|
|
|
+ // location.href = '/jyapp/big/page/landingPage';
|
|
|
+ // }
|
|
|
+ // break
|
|
|
+ // }
|
|
|
case '中标企业预测': {
|
|
|
sessionStorage.setItem('landinfo', JSON.stringify({
|
|
|
anchor: '中标企业预测'
|
|
@@ -1014,6 +1018,24 @@
|
|
|
}
|
|
|
break
|
|
|
}
|
|
|
+ case '剑鱼伙伴': {
|
|
|
+ if(userId==""){
|
|
|
+ window.location.href='/jyapp/free/login?back=index';
|
|
|
+ }else{
|
|
|
+ $.ajax({
|
|
|
+ url: '/distribution/partner/isPartner?t=' + new Date().getTime(),
|
|
|
+ type: 'POST',
|
|
|
+ success: function (r) {
|
|
|
+ if (r.isPartner) {
|
|
|
+ window.location.href = "/page_partner/home"
|
|
|
+ } else {
|
|
|
+ window.location.href = "/page_partner/partner/partner.html" // 协议页面
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ break
|
|
|
+ }
|
|
|
case '签到': {
|
|
|
if(userId==""){
|
|
|
window.location.href='/jyapp/free/login?back=index';
|