This commit is contained in:
张成
2025-11-15 23:51:38 +08:00
parent 6519cb8eec
commit 4b5c677856
14 changed files with 78 additions and 32 deletions

View File

@@ -222,7 +222,7 @@ const NewFollow = () => {
refresherTriggered={refreshing}
onRefresherRefresh={handleRefresh}
>
{followList.length > 0 ? (
{!loading && followList.length > 0 ? (
<View className="follow-list">
{followList.map(renderFollowItem)}
@@ -231,9 +231,9 @@ const NewFollow = () => {
<Text className="tip-text"></Text>
</View>
</View>
) : (
) : !loading ? (
<EmptyState text="暂无新增关注" />
)}
) : null}
</ScrollView>
</View>
);