...
|
...
|
@@ -257,7 +257,13 @@ export default { |
|
|
this.firstLoading = true;
|
|
|
this.fetchComments();
|
|
|
},
|
|
|
async onReply({commentId}) {
|
|
|
async onReply({destId, parentId}) {
|
|
|
const commentId = parentId || destId;
|
|
|
|
|
|
if (!commentId) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
const result = await this.fetchReplayList({
|
|
|
commentId
|
|
|
});
|
...
|
...
|
|