Commit 37cc8956 authored by anxixi's avatar anxixi

Merge remote-tracking branch 'origin/master'

parents f39903f4 aa5f5259
...@@ -109,6 +109,5 @@ ...@@ -109,6 +109,5 @@
} }
} }
.positionTop{ .positionTop{
top: 3rem; //top: 3rem;
padding-bottom:3rem;
} }
\ No newline at end of file
This diff is collapsed.
<template> <template>
<div class="contentList" :class="isMargin?'marginTop':'positionTop'" style="overflow: auto;-webkit-overflow-scrolling: touch;"> <div class="contentList" :class="isMargin?'marginTop':'positionTop'" style="-webkit-overflow-scrolling: touch;overflow: auto">
<mt-loadmore :top-method="loadTop" :bottom-method="loadBottom" :auto-fill="false" :bottom-all-loaded="allLoaded" ref="loadmore"> <mt-loadmore :top-method="loadTop" :bottom-method="loadBottom" :auto-fill="false" :bottom-all-loaded="allLoaded" ref="loadmore">
<ul v-if="tableData"> <ul v-if="tableData">
<li v-for="(item,index) in tableData" :key="item.businessId" v-if="$route.query.tab==2||isMargin" @click="handleToDetail(item)"> <li v-for="(item,index) in tableData" :key="item.businessId" v-if="$route.query.tab==2||isMargin" @click="handleToDetail(item)">
......
...@@ -73,8 +73,10 @@ ...@@ -73,8 +73,10 @@
window.sessionStorage.setItem("keyword",keyword); window.sessionStorage.setItem("keyword",keyword);
this.businessProjectsCount = data.businessProjectsCount; this.businessProjectsCount = data.businessProjectsCount;
this.businessRequirementsCount = data.businessRequirementsCount; this.businessRequirementsCount = data.businessRequirementsCount;
window.sessionStorage.setItem("businessProjectsCount",data.businessProjectsCount); this.totalCount = (data.businessProjectsCount?data.businessProjectsCount:0)+(data.businessRequirementsCount?data.businessRequirementsCount:0);
window.sessionStorage.setItem("businessRequirementsCount",data.businessRequirementsCount); window.sessionStorage.setItem("totalCount",this.totalCount);
window.sessionStorage.setItem("businessProjectsCount",this.businessProjectsCount);
window.sessionStorage.setItem("businessRequirementsCount",this.businessRequirementsCount);
}) })
} }
} }
......
...@@ -12,7 +12,9 @@ ...@@ -12,7 +12,9 @@
</li> </li>
</ul> </ul>
</div> </div>
<searchList :isWhich="currentIndex" :isVisible="isShow" @sendBusinessCountFunc="getBusinessCountFunc" @sendProjectCountFunc="getProjectCountFunc" ref="searchList"></searchList> <div class="moreWrap">
<searchList :isWhich="currentIndex" :isVisible="isShow" @sendBusinessCountFunc="getBusinessCountFunc" @sendProjectCountFunc="getProjectCountFunc" ref="searchList"></searchList>
</div>
</div> </div>
</template> </template>
...@@ -154,5 +156,13 @@ ...@@ -154,5 +156,13 @@
} }
} }
} }
.moreWrap{
width: 100%;
position: absolute;
left: 0;
overflow: hidden;
height: 100vh;
top: 3rem;
}
</style> </style>
\ No newline at end of file
...@@ -114,6 +114,7 @@ ...@@ -114,6 +114,7 @@
mounted(){ mounted(){
this.bigBusinessselect(); this.bigBusinessselect();
this.selectBigBusinessLevelOneSet(); this.selectBigBusinessLevelOneSet();
this.resetClik();
} }
} }
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment