@@ -102,8 +95,11 @@ class FlowItemRow extends Component {
}}>
- {!!this.state.reply_loading &&
}
- {this.state.replies.slice(0,10).map((reply)=>
)}
+ {!!this.state.reply_loading &&
加载中
}
+ {this.state.replies.slice(0,PREVIEW_REPLY_COUNT).map((reply)=>
)}
+ {this.state.replies.length>PREVIEW_REPLY_COUNT &&
+ 还有 {this.state.replies.length-PREVIEW_REPLY_COUNT} 条
+
}