<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminBoard.php" ?> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftCustomerService.php" ?> <? $obj = new AdminBoard($_REQUEST) ; $list = $obj->getListOfCS() ; $vnum = $obj->virtualNum ; ?> <script> $(document).ready(function(){ //=====프레입웤 변수들==================================================================================// var FORM_TARGET_CLS_NM = "DIV#Contents" ; // 폼을 동적 wrap 할 타겟 ID이름 var FORM_NAME = "nf" ; // 폼이름 var FORM_METHOD = "GET" ; // 폼 메쏘드 var FORM_USE_FILE = false ; // 파일폼 사용 여부 var FORM_ACTION = document.URL ; var NEXT_CMD = "" ; // 다은 수행 할 cmd //=====================================================================================================// var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ; // 페이징 $(".jPage").click2(function(){ jForm.ci() ; jForm.mi("page",$(this).attr("page")) ; jForm.submit() ; }) ; $(".jAutoSearch").change(function(){ jForm.ci() ; jForm.submit() ; }); $(".jSearch").click2(function(){ jForm.ci() ; jForm.submit() ; }); $(".jView").click2(function(){ var no = $(this).attr("no"); var type='<?=$boardType?>'; location.href = "/admin/customerService/csView.php?no=" + no + "&rurl=" + jQuery.rich.bin2hex(document.URL); }); $(".jAddUserExcel").click2(function(){ var s=$("#search_text").val(); location.href = "/admin/excel/userListExcel.php?search_text="+s; }); // 회원 탈퇴 $(".jDelUser").click2(function(){ var no = $(this).attr("no"); var noArr = new Array(no); if(confirm("정말 삭제하시겠습니까?")) { deleteUser(noArr); } }) ; // 단체 삭제 $(".jDelMulti").click2(function(){ var noArr = new Array(); var noCount = $(".jNo:checked").length; if(noCount == 0) { alert("삭제할 관리자를 하나 이상 선택해주세요."); return false; } if(confirm("정말 삭제하시겠습니까?")) { for(var i = 0; i < noCount; i++ ) { noArr[i] = $(".jNo:checked:eq(" + i + ")").val(); } deleteUser(noArr); } }); $(".jBtnMS").click2(function(){ var no = $(this).attr("no"); var member_type = $(this).attr("member_type"); $.ajax({ url : "/action_front.php?cmd=AdminUser.processRequestMemberShipUser", async : false, cache : false, dataType : "json", data : { "no" : no , "member_type" : member_type }, success : function(data){ alert(data.returnMessage); location.reload(); } }); }); $("#jCheckAll").change(function(){ if($(this).is(":checked")) $(".jNo").prop("checked", true); else $(".jNo").prop("checked", false); }); }) ; function deleteUser(noArr) { $.ajax({ url : "/action_front.php?cmd=AdminBoard.deleteCS", async : false, cache : false, dataType : "json", data : { "no" : noArr }, success : function(data){ alert("삭제되었습니다"); location.reload(); } }); } </script> <div id="Contents" class="notice"> <h1>고객센터</h1> <h2> <span>고객센터</span> </h2> <div class="data" > <div class="btngroupright"> <input type="button" class="button smallrounded blue jDelMulti" value="삭제" /> </div> <table class="datacList"> <thead> <tr> <th class="no" width="5%">No</th> <th width="2%"><input type="checkbox" id="jCheckAll"></th> <th width="10%">작성자</th> <th width="40%">제목</th> <th width="10%">등록일</th> <th width="10%">-</th> </tr> </thead> <tbody><!-- 10줄 리스트// 마지막 tr에 class="last" 넣어주세요 --> <? for($i=0; $i<sizeof($list); $i++){ ?> <tr class="<?=(sizeof($list)-1 == $i) ? "last" : "datacLists"?>"> <td class="no center"> <?=$vnum--?> </td> <td class="center"> <input type="checkbox" class="jNo" value="<?=$list[$i]["csNo"] ?>" > </td> <td class="center"> <?=$list[$i]["userName"]?> </td> <td class="center"> <?=$list[$i]["title"]?> </td> <td> <?=$list[$i]["regDate"]?> </td> <td class="center"> <input type="button" class="button searchsmall white jView" value="상세보기" no="<?=$list[$i]["csNo"]?>" /> </td> </tr> <? } ?> <?if(sizeof($list) == 0){?> <tr class="last"> <td class="no center" colspan="11">No Data</td> </tr> <?}?> </tbody> </table> <!-- Pagination --> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/pageNavigation.php" ?> <!--//Pagination --> </div> <div id="jDialogArea" style="display:none;"> <table class="datav" style="width:100%;"> <tr> <th style="height:25px; width:70px;">포인트</th> <td> <input type="input" id="jAddHeartPoint" value="" style="width:100%;"/> </td> </tr> </table> </div> </div> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>