자조보내는번호 ajax console.log 삭제

This commit is contained in:
hehihoho3@gmail.com 2025-01-13 17:53:23 +09:00
commit 8f7794a378

View File

@ -216,12 +216,10 @@ function resultLatestMsgList(){
// timeout:(1000*30),
success:function(data){
console.log('resultLatestMsgList data : ', data);
// 가져온 데이터 배열
let resultList = data.object;
let $latestMsgUl = $('#latestMsgUl'); // 기존 리스트 UL
console.log('let $latestMsgUl : ', $latestMsgUl);
// 기존 내용을 비우기
$latestMsgUl.empty();
@ -265,12 +263,10 @@ function resultBookMarkMsgList(){
// timeout:(1000*30),
success:function(data){
console.log('resultBookMarkMsgList data : ', data);
// 가져온 데이터 배열
let resultList = data.object;
let $bookMsgUl = $('#bookMsgUl'); // 기존 리스트 UL
console.log('let $bookMsgUl : ', $bookMsgUl);
// 기존 내용을 비우기
$bookMsgUl.empty();
@ -278,7 +274,7 @@ function resultBookMarkMsgList(){
// 데이터가 있는 경우
if (resultList && resultList.length > 0) {
resultList.forEach(function(item, index) {
console.log(item.addrPhoneNo + " : " + item.addrPhoneNo);
// console.log(item.addrPhoneNo + " : " + item.addrPhoneNo);
let listItem =
'<li id="bookMarkLi">' +
'<input type="checkbox" id="bokAddrChk_' + (index + 1) + '" name="bookAddrChk" value="' + item.addrPhoneNo + '">' +