|
@@ -106,9 +106,6 @@
|
|
this.clubStatus = resolve.clubStatus
|
|
this.clubStatus = resolve.clubStatus
|
|
this.userID = resolve.userID ? resolve.userID : '';
|
|
this.userID = resolve.userID ? resolve.userID : '';
|
|
this.userIdentity = resolve.userIdentity
|
|
this.userIdentity = resolve.userIdentity
|
|
- console.log(this.clubStatus)
|
|
|
|
- console.log(this.userID)
|
|
|
|
- console.log(this.userIdentity)
|
|
|
|
this.getListFromServer();
|
|
this.getListFromServer();
|
|
}).catch(error =>{
|
|
}).catch(error =>{
|
|
this.getListFromServer();
|
|
this.getListFromServer();
|
|
@@ -119,7 +116,7 @@
|
|
},
|
|
},
|
|
methods:{
|
|
methods:{
|
|
toLower() {
|
|
toLower() {
|
|
- if(this.totalPage>this.listData.length && this.pullFlag) {
|
|
|
|
|
|
+ if(this.hasNextPage && this.pullFlag) {
|
|
this.getListFromServer(true);
|
|
this.getListFromServer(true);
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -163,6 +160,7 @@
|
|
} else {
|
|
} else {
|
|
this.showLoading = true;
|
|
this.showLoading = true;
|
|
this.loadingNow = false;
|
|
this.loadingNow = false;
|
|
|
|
+ this.loadingText = '已至底部';
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
if(!loadMore) { this.showEmpty = true; }
|
|
if(!loadMore) { this.showEmpty = true; }
|