留言板问题调整
This commit is contained in:
parent
a22dd39077
commit
d48d2564bc
@ -223,7 +223,7 @@ export default {
|
||||
this.cancelComment();
|
||||
}).catch(error => {
|
||||
this.$message.error('评论留言失败!');
|
||||
this.console.error(error);
|
||||
console.error(error);
|
||||
});
|
||||
} else {
|
||||
commentLevelMessage(this.replyMessageId, {content:this.commentContentNoName}).then(resp => {
|
||||
@ -231,7 +231,7 @@ export default {
|
||||
this.cancelComment();
|
||||
}).catch(error => {
|
||||
this.$message.error('评论留言失败!');
|
||||
this.console.error(error);
|
||||
console.error(error);
|
||||
});
|
||||
}
|
||||
},
|
||||
@ -249,7 +249,7 @@ export default {
|
||||
}
|
||||
}).catch(error => {
|
||||
this.$message.error('更新回复失败!');
|
||||
this.console.error(error);
|
||||
console.error(error);
|
||||
});
|
||||
},
|
||||
computedCommentName(elem) {
|
||||
@ -266,7 +266,7 @@ export default {
|
||||
this.handleCurrentChange();
|
||||
}).catch(error => {
|
||||
this.$message.error('删除留言失败!');
|
||||
this.console.error(error);
|
||||
console.error(error);
|
||||
});
|
||||
} else {
|
||||
deleteMessageBySelf(messageId).then(resp => {
|
||||
@ -274,7 +274,7 @@ export default {
|
||||
this.handleCurrentChange();
|
||||
}).catch(error => {
|
||||
this.$message.error('删除留言失败!');
|
||||
this.console.error(error);
|
||||
console.error(error);
|
||||
});
|
||||
}
|
||||
},
|
||||
@ -284,14 +284,14 @@ export default {
|
||||
this.getCommentList(messageId, messageIndex);
|
||||
}).catch(error => {
|
||||
this.$message.error('删除回复失败!');
|
||||
this.console.error(error);
|
||||
console.error(error);
|
||||
});
|
||||
} else {
|
||||
deleteCommentBySelf(commentId).then(resp => {
|
||||
this.getCommentList(messageId, messageIndex);
|
||||
}).catch(error => {
|
||||
this.$message.error('删除回复失败!');
|
||||
this.console.error(error);
|
||||
console.error(error);
|
||||
});
|
||||
}
|
||||
},
|
||||
@ -300,7 +300,7 @@ export default {
|
||||
this.allCommentList = resp.data;
|
||||
this.moreMessageId = data.id;
|
||||
}).catch(error => {
|
||||
this.console.error(error);
|
||||
console.error(error);
|
||||
});
|
||||
},
|
||||
changeCommentContent(val) {
|
||||
|
Loading…
Reference in New Issue
Block a user