서비스는 아닌거같아요 치실쓰는데 임플난트가 빠져서 간다고했더니 예약하고 오라네요 죽지 안으니 괜찬타고요 이게 서비스 가 잘하는 치과라고 볼수있나요
더구나 지방이고요 일요일이라 쉬는건알겠지만
0 && searchValue.length < 2) {
alert('검색어는 최소 2글자 이상 입력해주세요.');
$('#searchInput').focus();
return false;
}
$('#searchForm').submit();
}
// 수정 버튼
function editPost(event, board, wr_id) {
event.preventDefault();
event.stopPropagation();
location.href = './admin_write.php?w=u&board=' + board + '&wr_id=' + wr_id;
}
// 삭제 버튼
function deletePost(event, board, wr_id) {
event.preventDefault();
event.stopPropagation();
if (confirm('정말 삭제하시겠습니까?\n\n⚠️ 주의: 삭제된 게시물은 복구할 수 없습니다!')) {
location.href = './admin_delete.php?bo_table=' + board + '&wr_id=' + wr_id;
}
}