|
@@ -56,6 +56,7 @@
|
|
|
<view style='height:12vh;background:#F5F6FA;line-height:12vh;text-align:center;' v-if='releaseList.length == 0'>
|
|
|
当前暂无结果
|
|
|
</view>
|
|
|
+ <u-back-top :scroll-top="scrollTop" mode="circle" icon="arrow-upward"></u-back-top>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -78,7 +79,8 @@
|
|
|
backgroundImage: "none",
|
|
|
paddingTop: "0",
|
|
|
marginTop: "20rpx"
|
|
|
- }
|
|
|
+ },
|
|
|
+ scrollTop: 0,
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -108,12 +110,16 @@
|
|
|
this.portraits = this.userInfo.avatarUrl
|
|
|
this.getData()
|
|
|
},
|
|
|
+ onPageScroll(e) {
|
|
|
+ this.scrollTop = e.scrollTop;
|
|
|
+ },
|
|
|
methods: {
|
|
|
getData() {
|
|
|
this.$api.doRequest('get', '/settledCompanyDynamics/selectSettledCompanyDynamicsPage', {
|
|
|
currentPage: 1,
|
|
|
pageSize:10,
|
|
|
- searchKeyWord: this.keyword
|
|
|
+ searchKeyWord: this.keyword,
|
|
|
+ searchType:2
|
|
|
})
|
|
|
.then(res => {
|
|
|
if (res.data.code == 200) {
|
|
@@ -135,7 +141,8 @@
|
|
|
this.$api.doRequest('get', '/settledCompanyDynamics/selectSettledCompanyDynamicsPage', {
|
|
|
currentPage: this.currentPage,
|
|
|
pageSize: this.pageSize,
|
|
|
- searchKeyWord: this.keyword
|
|
|
+ searchKeyWord: this.keyword,
|
|
|
+ searchType:2
|
|
|
})
|
|
|
.then(res => {
|
|
|
if (res.data.code == 200) {
|