Browse Source

feat(im_chat_info): 添加下拉刷新功能

- 在页面中添加 onPullDownRefresh 方法,实现下拉刷新功能
- 修改 loadMoreData 方法,支持下拉刷新时的数据加载
master
liutong 1 year ago
parent
commit
cbf1d539c3
  1. 6
      pages/common/im_chat_info.vue

6
pages/common/im_chat_info.vue

@ -82,6 +82,11 @@ export default {
}, },
onLoad() { onLoad() {
}, },
//
async onPullDownRefresh() {
//()
await this.loadMoreData()
},
methods: { methods: {
// //
@ -91,7 +96,6 @@ export default {
//() //()
loadMoreData() { loadMoreData() {
return; //
// //
if (!this.isReachedBottom) { if (!this.isReachedBottom) {
this.isReachedBottom = true;// this.isReachedBottom = true;//

Loading…
Cancel
Save