|
@@ -892,6 +892,9 @@
|
|
this.following = res.data;
|
|
this.following = res.data;
|
|
this.followingCursor++;
|
|
this.followingCursor++;
|
|
});
|
|
});
|
|
|
|
+ if(res.data.length < 10) {
|
|
|
|
+ this.followingMore = false;
|
|
|
|
+ }
|
|
this.$refs.followingModal.show();
|
|
this.$refs.followingModal.show();
|
|
},
|
|
},
|
|
|
|
|
|
@@ -908,7 +911,10 @@
|
|
.then(res => {
|
|
.then(res => {
|
|
this.followers = res.data;
|
|
this.followers = res.data;
|
|
this.followerCursor++;
|
|
this.followerCursor++;
|
|
- })
|
|
|
|
|
|
+ })
|
|
|
|
+ if(res.data.length < 10) {
|
|
|
|
+ this.followerMore = false;
|
|
|
|
+ }
|
|
this.$refs.followerModal.show();
|
|
this.$refs.followerModal.show();
|
|
},
|
|
},
|
|
|
|
|