댓글 삭제수정

This commit is contained in:
dyhj625 2025-03-11 10:34:10 +09:00
parent c30ccea258
commit 7ec6424667

View File

@ -677,12 +677,10 @@
if (!confirm('정말 이 댓글을 삭제하시겠습니까?')) return;
const targetComment = findCommentById(comment.commentId, comments.value);
// console.log('?',comment)
console.log(comment.parentId, comment.commentId)
try {
const response = await axios.delete(`board/comment/${comment.commentId}`, {
data: { LOCCMTSEQ: comment.commentId },
params: { LOCCMTSEQ: comment.commentId, LOCCMTPNT: comment.parentId },
});
if (response.data.code === 200) {