|
@@ -914,6 +914,9 @@
|
|
|
<!-- <img class="icon-vip nologin-hide" src="/images/biddingSearch/VIP.png" alt=""> -->
|
|
|
<li data-value="fiveyear" data-auth="vip" onClick="if(!vipState) return openVipDialog();" class="nologin-hide">最近5年</li>
|
|
|
<!-- <img class="icon-vip nologin-hide" src="/images/biddingSearch/VIP.png" alt=""> -->
|
|
|
+ <div id="guide-go-workspace" v-if="!goTemplateData.inIframe">
|
|
|
+ 最近五年数据查询以及更多筛选条件请<div class="highlight-content">“<button @click="guideGoWorkSpace">${!islogin ? '登录后' : ''}进入工作台</button>”</div>检索
|
|
|
+ </div>
|
|
|
</ul>
|
|
|
</div>
|
|
|
<div class="timerInput fl nologin-hide">
|
|
@@ -934,6 +937,9 @@
|
|
|
<li data-value="lately-7">最近7天</li>
|
|
|
<li data-value="lately-30">最近30天</li>
|
|
|
<li data-value="thisyear">最近1年</li>
|
|
|
+ <div id="guide-go-workspace" v-if="!goTemplateData.inIframe">
|
|
|
+ 最近五年数据查询以及更多筛选条件请<div class="highlight-content">“<button @click="guideGoWorkSpace">${!islogin ? '登录后' : ''}进入工作台</button>”</div>检索
|
|
|
+ </div>
|
|
|
</ul>
|
|
|
</div>
|
|
|
<div class="vip_box fl clearfix" v-if="goTemplateData.inIframe">
|
|
@@ -1580,7 +1586,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="tabContainer" id="fix-tab" style="margin: 0">
|
|
|
- <div v-show="tableFixedTop" class="lucene-table fixed-table-header-container" id="fixed-table-header-container" style="padding: 0"></div>
|
|
|
+ <div v-show="canShowFixedTableHeader" class="lucene-table fixed-table-header-container" id="fixed-table-header-container" style="padding: 0"></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<!--tab切换内容-->
|
|
@@ -3028,6 +3034,8 @@ function checkTagDisabled () {
|
|
|
attachVal_zb:"",
|
|
|
fixedTop: false, // 筛选是否吸顶
|
|
|
tableFixedTop: false, // 搜索结果是否吸顶
|
|
|
+ // 是否显示顶部表头
|
|
|
+ tableHeaderShow: false,
|
|
|
saveFilterDialog: false,
|
|
|
hasFilterDialog: false,
|
|
|
curFilter: {
|
|
@@ -3171,6 +3179,9 @@ function checkTagDisabled () {
|
|
|
canNextDataExport: function () {
|
|
|
return this.listState.allCount > 0
|
|
|
},
|
|
|
+ canShowFixedTableHeader: function () {
|
|
|
+ return this.tableHeaderShow && this.tableFixedTop
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
'listState.allCount': function (val) {
|
|
@@ -3228,6 +3239,13 @@ function checkTagDisabled () {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ // 引导文案点击事件
|
|
|
+ guideGoWorkSpace: function () {
|
|
|
+ if (!this.islogin) {
|
|
|
+ return openLoginDig()
|
|
|
+ }
|
|
|
+ this.goWorkSpace()
|
|
|
+ },
|
|
|
goBack () {
|
|
|
var back = function () {
|
|
|
// 判断是否在iframe,如果在iframe,则用父级返回
|
|
@@ -3736,6 +3754,7 @@ function checkTagDisabled () {
|
|
|
} else {
|
|
|
this.fixedTop = false
|
|
|
}
|
|
|
+ $(".lucene-table.tabfixed.tababsolute").is(":visible")
|
|
|
if (scrollTop >= watchTable) {
|
|
|
this.tableFixedTop = true
|
|
|
} else {
|