|
@@ -702,7 +702,8 @@ export default {
|
|
if(res.data.length > 0) {
|
|
if(res.data.length > 0) {
|
|
this.following.push(...res.data);
|
|
this.following.push(...res.data);
|
|
this.followingCursor++;
|
|
this.followingCursor++;
|
|
- } else {
|
|
|
|
|
|
+ }
|
|
|
|
+ if(res.data.length < 10) {
|
|
this.followingMore = false;
|
|
this.followingMore = false;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -719,11 +720,12 @@ export default {
|
|
if(res.data.length > 0) {
|
|
if(res.data.length > 0) {
|
|
this.followers.push(...res.data);
|
|
this.followers.push(...res.data);
|
|
this.followerCursor++;
|
|
this.followerCursor++;
|
|
- } else {
|
|
|
|
|
|
+ }
|
|
|
|
+ if(res.data.length < 10) {
|
|
this.followerMore = false;
|
|
this.followerMore = false;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-</script>
|
|
|
|
|
|
+</script>
|